diff --git a/frontend/src/pages/projects/screens/detail/ProjectDetails.tsx b/frontend/src/pages/projects/screens/detail/ProjectDetails.tsx index d0d4546c07..d6f4bc3728 100644 --- a/frontend/src/pages/projects/screens/detail/ProjectDetails.tsx +++ b/frontend/src/pages/projects/screens/detail/ProjectDetails.tsx @@ -41,16 +41,6 @@ const ProjectDetails: React.FC = () => { sections={[ { id: ProjectSectionID.OVERVIEW, title: 'Overview', component: }, { id: ProjectSectionID.WORKBENCHES, title: 'Workbenches', component: }, - { - id: ProjectSectionID.CLUSTER_STORAGES, - title: 'Cluster storage', - component: , - }, - { - id: ProjectSectionID.DATA_CONNECTIONS, - title: 'Data connections', - component: , - }, ...(pipelinesEnabled ? [ { @@ -69,6 +59,16 @@ const ProjectDetails: React.FC = () => { }, ] : []), + { + id: ProjectSectionID.CLUSTER_STORAGES, + title: 'Cluster storage', + component: , + }, + { + id: ProjectSectionID.DATA_CONNECTIONS, + title: 'Data connections', + component: , + }, ...(projectSharingEnabled ? [ { diff --git a/frontend/src/pages/projects/screens/detail/overview/configuration/ConfigurationSection.tsx b/frontend/src/pages/projects/screens/detail/overview/configuration/ConfigurationSection.tsx index 4ea28811ad..507d530faf 100644 --- a/frontend/src/pages/projects/screens/detail/overview/configuration/ConfigurationSection.tsx +++ b/frontend/src/pages/projects/screens/detail/overview/configuration/ConfigurationSection.tsx @@ -35,13 +35,13 @@ const ConfigurationSection: React.FC = () => { > navigate( - `/projects/${currentProject.metadata.name}?section=${ProjectSectionID.PERMISSIONS}`, + `/projects/${currentProject.metadata.name}?section=${ProjectSectionID.CLUSTER_STORAGES}`, ) } /> @@ -59,13 +59,13 @@ const ConfigurationSection: React.FC = () => { /> navigate( - `/projects/${currentProject.metadata.name}?section=${ProjectSectionID.CLUSTER_STORAGES}`, + `/projects/${currentProject.metadata.name}?section=${ProjectSectionID.PERMISSIONS}`, ) } />