Skip to content

Commit

Permalink
/event-types /team-detail /scheduling type - double divider under tea…
Browse files Browse the repository at this point in the history
…m members (calcom#4485)

Co-authored-by: Nitesh Singh <[email protected]>
Co-authored-by: gitstart <[email protected]>
Co-authored-by: Matheus Muniz <[email protected]>
Co-authored-by: Klinger Matheus <[email protected]>
Co-authored-by: hustle-ps <[email protected]>
Co-authored-by: gitstart <[email protected]>
Co-authored-by: Olusanya Timothy <[email protected]>
Co-authored-by: Thiago Nascimbeni <[email protected]>

Co-authored-by: gitstart <[email protected]>
Co-authored-by: Nitesh Singh <[email protected]>
Co-authored-by: Matheus Muniz <[email protected]>
Co-authored-by: Klinger Matheus <[email protected]>
Co-authored-by: hustle-ps <[email protected]>
Co-authored-by: gitstart <[email protected]>
Co-authored-by: Olusanya Timothy <[email protected]>
Co-authored-by: Thiago Nascimbeni <[email protected]>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
10 people authored Oct 1, 2022
1 parent d3f8d95 commit f21f365
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ui/v2/modules/event-types/CheckedTeamSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ export const CheckedTeamSelect = ({
{/* This class name conditional looks a bit odd but it allows a seemless transition when using autoanimate
- Slides down from the top instead of just teleporting in from nowhere*/}
<ul className={classNames("mt-3 rounded-md", value.length >= 1 && "border")} ref={animationRef}>
{value.map((option) => (
<li key={option.value} className="flex border-b py-2 px-3">
{value.map((option, index) => (
<li key={option.value} className={`flex py-2 px-3 ${index === value.length - 1 ? "" : "border-b"}`}>
<Avatar size="sm" imageSrc={option.avatar} alt={option.label} />
<p className="my-auto ml-3 text-sm text-gray-900">{option.label}</p>
<Icon.FiX
Expand Down

0 comments on commit f21f365

Please sign in to comment.