Disable SSP for side nav and home page cluster list

- See https://github.com/rancher/dashboard/issues/14493
This commit is contained in:
Richard Cox 2025-06-11 18:12:25 +01:00
parent 75afc17979
commit c0dd86096b
1 changed files with 13 additions and 12 deletions

View File

@ -658,18 +658,19 @@ export const PAGINATION_SETTINGS_STORE_DEFAULTS: PaginationSettingsStore = {
} }
} }
}, },
management: { // Disabled due to https://github.com/rancher/dashboard/issues/14493
resources: { // management: {
enableAll: false, // resources: {
enableSome: { // enableAll: false,
enabled: [ // enableSome: {
{ resource: CAPI.RANCHER_CLUSTER, context: ['home', 'side-bar'] }, // enabled: [
{ resource: MANAGEMENT.CLUSTER, context: ['side-bar'] }, // { resource: CAPI.RANCHER_CLUSTER, context: ['home', 'side-bar'] },
], // { resource: MANAGEMENT.CLUSTER, context: ['side-bar'] },
generic: false, // ],
} // generic: false,
} // }
} // }
// }
}; };
export default new StevePaginationUtils(); export default new StevePaginationUtils();