Skip to content

Commit 8b5813b

Browse files
committed
fix: refresh schema and autoresresh should be similar
1 parent e5d0823 commit 8b5813b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/AutoRefreshControl/AutoRefreshControl.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function AutoRefreshControl({className}: AutoRefreshControlProps) {
2121
return (
2222
<div className={b(null, className)}>
2323
<Button
24-
view="flat"
24+
view="flat-secondary"
2525
onClick={() => {
2626
dispatch(api.util.invalidateTags(['All']));
2727
}}

src/containers/Tenant/ObjectSummary/SchemaTree/RefreshTreeButton.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {ArrowRotateRight} from '@gravity-ui/icons';
1+
import {ArrowsRotateLeft} from '@gravity-ui/icons';
22
import {ActionTooltip, Button, Icon} from '@gravity-ui/uikit';
33
import {nanoid} from '@reduxjs/toolkit';
44

@@ -14,7 +14,7 @@ export function RefreshTreeButton() {
1414
updateTreeKey(nanoid());
1515
}}
1616
>
17-
<Icon data={ArrowRotateRight} />
17+
<Icon data={ArrowsRotateLeft} />
1818
</Button>
1919
</ActionTooltip>
2020
);

0 commit comments

Comments
 (0)