mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
fix: cycle select dropdown issue layout overflow fix (#3789)
This commit is contained in:
committed by
GitHub
parent
812df59d1d
commit
395098417c
@@ -204,7 +204,7 @@ export const CycleDropdown: React.FC<Props> = observer((props) => {
|
||||
>
|
||||
{!hideIcon && <ContrastIcon className="h-3 w-3 flex-shrink-0" />}
|
||||
{BUTTON_VARIANTS_WITH_TEXT.includes(buttonVariant) && (
|
||||
<span className="flex-grow truncate">{selectedCycle?.name ?? placeholder}</span>
|
||||
<span className="flex-grow truncate max-w-40">{selectedCycle?.name ?? placeholder}</span>
|
||||
)}
|
||||
{dropdownArrow && (
|
||||
<ChevronDown className={cn("h-2.5 w-2.5 flex-shrink-0", dropdownArrowClassName)} aria-hidden="true" />
|
||||
|
||||
Reference in New Issue
Block a user