Hide the menu button when in edit mode

This commit is contained in:
Jackson Harper 2022-04-05 14:15:25 -07:00
parent 8da027aaa1
commit 07bc512ff3

View file

@ -597,9 +597,11 @@ function GenericTableCard(props: GenericTableCardProps & { isLastChild?: boolean
</Box>
</TooltipWrapped>
)}
<Box css={{ marginLeft: 'auto', '@md': { display: 'none' }}}>
{moreActionsButton()}
</Box>
{!showInput && (
<Box css={{ marginLeft: 'auto', '@md': { display: 'none' }}}>
{moreActionsButton()}
</Box>
)}
</HStack>
<HStack