Skip to content

Commit

Permalink
fix: module quick action dropdown overflow fix (#3865)
Browse files Browse the repository at this point in the history
  • Loading branch information
anmolsinghbhatia committed Mar 6, 2024
1 parent 666b7ea commit 69fa170
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/components/modules/module-card-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ export const ModuleCardItem: React.FC<Props> = observer((props) => {
</button>
))}

<CustomMenu ellipsis className="z-10">
<CustomMenu ellipsis className="z-10" placement="left-start">
{isEditingAllowed && (
<>
<CustomMenu.MenuItem onClick={handleEditModule}>
Expand Down
2 changes: 1 addition & 1 deletion web/components/modules/module-list-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export const ModuleListItem: React.FC<Props> = observer((props) => {
</button>
))}

<CustomMenu verticalEllipsis buttonClassName="z-[1]" placement="bottom-end">
<CustomMenu verticalEllipsis buttonClassName="z-[1]" placement="left-start">
{isEditingAllowed && (
<>
<CustomMenu.MenuItem onClick={handleEditModule}>
Expand Down

0 comments on commit 69fa170

Please sign in to comment.