From 81dd2704a6f5d5f30f5a83776fd31d136f7dd687 Mon Sep 17 00:00:00 2001 From: "D. Ror" Date: Thu, 8 Feb 2024 11:36:20 -0500 Subject: [PATCH] Prevent Vern/Sense Dialog button invisible overflow (#2942) --- .../DataEntry/DataEntryTable/NewEntry/StyledMenuItem.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/DataEntry/DataEntryTable/NewEntry/StyledMenuItem.ts b/src/components/DataEntry/DataEntryTable/NewEntry/StyledMenuItem.ts index 706d038a8d..5670c4a1f3 100644 --- a/src/components/DataEntry/DataEntryTable/NewEntry/StyledMenuItem.ts +++ b/src/components/DataEntry/DataEntryTable/NewEntry/StyledMenuItem.ts @@ -12,6 +12,7 @@ const StyledMenuItem = styled(MenuItem)(({ theme }) => ({ color: theme.palette.common.white, }, }, + overflow: "clip", })); export default StyledMenuItem;