Skip to content

Commit

Permalink
fix: padding issue cycle active cycles menu (#6424)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathalav55 authored Jan 17, 2025
1 parent 26a9b7f commit 9addcde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/core/components/cycles/quick-actions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export const CycleQuickActions: React.FC<Props> = observer((props) => {
</div>
)}
<ContextMenu parentRef={parentRef} items={MENU_ITEMS} />
<CustomMenu ellipsis placement="bottom-end" closeOnSelect>
<CustomMenu ellipsis placement="bottom-end" closeOnSelect maxHeight="lg">
{MENU_ITEMS.map((item) => {
if (item.shouldRender === false) return null;
return (
Expand Down

0 comments on commit 9addcde

Please sign in to comment.