Skip to content

Commit

Permalink
Columsettings button's tooltip in the grid header. (#1528)
Browse files Browse the repository at this point in the history
  • Loading branch information
kavics authored Sep 18, 2023
1 parent 6ecc5ee commit 29a5851
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,11 @@ export const VirtualizedTable = <T extends GenericContent = GenericContent>(prop
alignItems: 'center',
}}
component="div">
<Button data-test="column-settings" onClick={props.handleColumnSettingsClick}>
<Build />
</Button>
<Tooltip title="Column Settings" placement="bottom">
<Button data-test="column-settings" onClick={props.handleColumnSettingsClick}>
<Build />
</Button>
</Tooltip>
</TableCell>
)
}
Expand Down

0 comments on commit 29a5851

Please sign in to comment.