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: {
resources: {
enableAll: false,
enableSome: {
enabled: [
{ resource: CAPI.RANCHER_CLUSTER, context: ['home', 'side-bar'] },
{ resource: MANAGEMENT.CLUSTER, context: ['side-bar'] },
],
generic: false,
}
}
}
// Disabled due to https://github.com/rancher/dashboard/issues/14493
// management: {
// resources: {
// enableAll: false,
// enableSome: {
// enabled: [
// { resource: CAPI.RANCHER_CLUSTER, context: ['home', 'side-bar'] },
// { resource: MANAGEMENT.CLUSTER, context: ['side-bar'] },
// ],
// generic: false,
// }
// }
// }
};
export default new StevePaginationUtils();