Skip to content

Commit 42159b8

Browse files
chore: Update Pending changes dropdown component to improve menu styling (#20015)
1 parent 3bb64fa commit 42159b8

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

components/dashboard/src/components/PendingChangesDropdown.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ export default function PendingChangesDropdown({ gitStatus }: { gitStatus?: Work
4040
return <div className="text-sm text-gray-400 dark:text-gray-500">No Changes</div>;
4141
}
4242
return (
43-
<ContextMenu menuEntries={menuEntries} customClasses="w-64 max-h-48 overflow-scroll mx-auto left-0 right-0">
43+
<ContextMenu
44+
menuEntries={menuEntries}
45+
customClasses="w-64 max-h-48 overflow-y-scroll overflow-x-clip mx-auto left-0 right-0"
46+
>
4447
<p className="flex items-center text-gitpod-red">
4548
<span>
4649
{totalChanges} Change{totalChanges === 1 ? "" : "s"}

0 commit comments

Comments
 (0)