We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea16559 commit cf29508Copy full SHA for cf29508
app/components/chart-selection-tabs.tsx
@@ -936,14 +936,16 @@ const TabContent = (props: TabContentProps) => {
936
</Button>
937
938
{label ? (
939
- <Button
940
- variant="text"
941
- color="primary"
942
- className={classes.label}
943
- onClick={onSwitchClick}
944
- >
945
- {label}
946
- </Button>
+ <Tooltip title={label} enterDelay={750}>
+ <Button
+ variant="text"
+ color="primary"
+ className={classes.label}
+ onClick={onSwitchClick}
+ >
+ {label}
947
+ </Button>
948
+ </Tooltip>
949
) : null}
950
{editable && (
951
<Button
0 commit comments