Skip to content

Commit

Permalink
fix: refresh schema and autoresresh icons should be similar (#1572)
Browse files Browse the repository at this point in the history
  • Loading branch information
Raubzeug authored Nov 5, 2024
1 parent 7680e96 commit 03bc63d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/AutoRefreshControl/AutoRefreshControl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function AutoRefreshControl({className}: AutoRefreshControlProps) {
return (
<div className={b(null, className)}>
<Button
view="flat"
view="flat-secondary"
onClick={() => {
dispatch(api.util.invalidateTags(['All']));
}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {ArrowRotateRight} from '@gravity-ui/icons';
import {ArrowsRotateLeft} from '@gravity-ui/icons';
import {ActionTooltip, Button, Icon} from '@gravity-ui/uikit';
import {nanoid} from '@reduxjs/toolkit';

Expand All @@ -14,7 +14,7 @@ export function RefreshTreeButton() {
updateTreeKey(nanoid());
}}
>
<Icon data={ArrowRotateRight} />
<Icon data={ArrowsRotateLeft} />
</Button>
</ActionTooltip>
);
Expand Down

0 comments on commit 03bc63d

Please sign in to comment.