We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bb64fa commit 42159b8Copy full SHA for 42159b8
components/dashboard/src/components/PendingChangesDropdown.tsx
@@ -40,7 +40,10 @@ export default function PendingChangesDropdown({ gitStatus }: { gitStatus?: Work
40
return <div className="text-sm text-gray-400 dark:text-gray-500">No Changes</div>;
41
}
42
return (
43
- <ContextMenu menuEntries={menuEntries} customClasses="w-64 max-h-48 overflow-scroll mx-auto left-0 right-0">
+ <ContextMenu
44
+ menuEntries={menuEntries}
45
+ customClasses="w-64 max-h-48 overflow-y-scroll overflow-x-clip mx-auto left-0 right-0"
46
+ >
47
<p className="flex items-center text-gitpod-red">
48
<span>
49
{totalChanges} Change{totalChanges === 1 ? "" : "s"}
0 commit comments