Skip to content

Commit

Permalink
feat: INITIATE-3761: Fixing display type.
Browse files Browse the repository at this point in the history
  • Loading branch information
Anirudh-p44 committed Dec 27, 2024
1 parent a2c70f8 commit 0508553
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ export function DataTableExpandButton<TData extends RowData>(
<IconButton
{...parsedProps}
css={{
display: canExpand || showCanExpandIcon ? 'block' : 'none',
display: canExpand || showCanExpandIcon ? 'flex' : 'none',
'&:hover': {
bgColor: '$colors$palette-grey-300',
bgColor: '$palette-grey-300',
},
}}
isDisabled={isLoading || !canExpand}
Expand Down

0 comments on commit 0508553

Please sign in to comment.