Skip to content

Commit f4740b6

Browse files
committed
Change tooltip position on 'Export File' button
Run prettier :wq
1 parent c8cf847 commit f4740b6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/redux-devtools-app/src/components/buttons/ExportButton.tsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ class ExportButton extends Component<Props> {
1414

1515
render() {
1616
return (
17-
<Button title="Export to a file" onClick={this.props.exportState}>
17+
<Button
18+
title="Export to a file"
19+
toolTipPosition="top-right"
20+
onClick={this.props.exportState}
21+
>
1822
<TiDownload />
1923
</Button>
2024
);

0 commit comments

Comments
 (0)