Skip to content

fix: refresh schema and autoresresh icons should be similar #1572

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading