Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -194,13 +194,13 @@ const Item = ({
const content = (): JSX.Element => (
<div>
<span
className="text-default break-words font-semibold ltr:mr-1 rtl:ml-1"
className="text-default inline-block max-w-full truncate font-semibold ltr:mr-1 rtl:ml-1"
data-testid={`event-type-title-${type.id}`}>
{type.title}
</span>
{group.profile.slug && type.schedulingType !== SchedulingType.MANAGED ? (
<small
className="text-subtle hidden font-normal leading-4 sm:inline"
className="text-subtle hidden max-w-full truncate font-normal leading-4 sm:inline-block"
data-testid={`event-type-slug-${type.id}`}>
{`/${group.profile.slug}/${type.slug}`}
</small>
Expand Down Expand Up @@ -238,13 +238,13 @@ const Item = ({
<Link href={`/event-types/${type.id}?tabName=setup`} title={type.title}>
<div>
<span
className="text-default break-words font-semibold ltr:mr-1 rtl:ml-1"
className="text-default inline-block max-w-full truncate font-semibold ltr:mr-1 rtl:ml-1"
data-testid={`event-type-title-${type.id}`}>
{type.title}
</span>
{group.profile.slug && type.schedulingType !== SchedulingType.MANAGED ? (
<small
className="text-subtle hidden font-normal leading-4 sm:inline"
className="text-subtle hidden max-w-full truncate font-normal leading-4 sm:inline-block"
data-testid={`event-type-slug-${type.id}`}>
{`/${group.profile.slug}/${type.slug}`}
</small>
Expand Down
Loading