From e9c1773adf37279dc5ca7b4615e95fbd8477ee3f Mon Sep 17 00:00:00 2001 From: Steven Zhang Date: Thu, 12 Mar 2026 21:30:06 -0700 Subject: [PATCH] #189 After installing the NeuVector UI extension in rancher 2.14.0, The dashboard page shows blank with no console errors --- pkg/neuvector-ui-ext/pages/c/_cluster/neuvector/index.vue | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pkg/neuvector-ui-ext/pages/c/_cluster/neuvector/index.vue b/pkg/neuvector-ui-ext/pages/c/_cluster/neuvector/index.vue index a218e388..ec01be31 100644 --- a/pkg/neuvector-ui-ext/pages/c/_cluster/neuvector/index.vue +++ b/pkg/neuvector-ui-ext/pages/c/_cluster/neuvector/index.vue @@ -13,16 +13,11 @@ export default { if ( this.$store.getters['cluster/canList'](SERVICE) ) { this.allServices = await this.$store.dispatch('cluster/findAll', { type: SERVICE }, { root: true }); } - if ( this.$store.getters['cluster/canList'](SCHEMA) ) { - this.allSchemas = await this.$store.dispatch('cluster/findAll', { type: SCHEMA }, { root: true }); - } }, data() { return { allServices: null, - allSchemas: null, - index: -1, NV_CONST: NV_CONST, } }, @@ -61,7 +56,7 @@ export default {