From c0dd86096b481eb0d9bf12424573cabdb267c31c Mon Sep 17 00:00:00 2001 From: Richard Cox Date: Wed, 11 Jun 2025 18:12:25 +0100 Subject: [PATCH] Disable SSP for side nav and home page cluster list - See https://github.com/rancher/dashboard/issues/14493 --- shell/plugins/steve/steve-pagination-utils.ts | 25 ++++++++++--------- 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/shell/plugins/steve/steve-pagination-utils.ts b/shell/plugins/steve/steve-pagination-utils.ts index 9e89f10360..65b823a17a 100644 --- a/shell/plugins/steve/steve-pagination-utils.ts +++ b/shell/plugins/steve/steve-pagination-utils.ts @@ -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();