Skip to content

Commit cc3d8e3

Browse files
fix(Clusters): make actions switcher secondary (#2393)
1 parent 3aef421 commit cc3d8e3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/containers/Clusters/columns.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,12 @@ function getTitleColumn({isEditClusterAvailable, isDeleteClusterAvailable}: Clus
8484
return null;
8585
}
8686

87-
return <DropdownMenu items={menuItems} />;
87+
return (
88+
<DropdownMenu
89+
items={menuItems}
90+
defaultSwitcherProps={{view: 'flat-secondary'}}
91+
/>
92+
);
8893
};
8994

9095
return (

0 commit comments

Comments
 (0)