Skip to content

Commit

Permalink
Assume that all clusters are managed while fetching info
Browse files Browse the repository at this point in the history
  • Loading branch information
gkarat committed Apr 25, 2023
1 parent 7bf634d commit 5ba778d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/ClusterTabs/ClusterTabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const ClusterTabs = () => {
const clusterInfo = useGetClusterInfoState({
id: clusterId,
});
const isManaged = get(clusterInfo, 'data.managed', false);
const isManaged = get(clusterInfo, 'data.managed', true);

const [activeKey, setActiveKey] = useState(() => {
const activeTab = searchParams.get('active_tab');
Expand Down

0 comments on commit 5ba778d

Please sign in to comment.