Skip to content

Commit

Permalink
fix: wrong title in button tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
awesthouse committed Jul 4, 2023
1 parent afb35e3 commit 8089ed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/dm-core-plugins/src/table/TableRow/TableRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export function TableRow(props: TTableRow) {
<Table.Row key={item.key}>
{config.functionality.openAsExpandable && (
<Table.Cell>
<Tooltip title={item.expanded ? 'Minimize' : 'Collapse'}>
<Tooltip title={item.expanded ? 'Collapse row' : 'Expand row'}>
<Button
aria-label={
item.expanded ? 'Close expandable row' : 'Open expandable row'
Expand Down

0 comments on commit 8089ed7

Please sign in to comment.