From 01b98e37ec2a32467b47d012244e0146532f9a48 Mon Sep 17 00:00:00 2001 From: Sean-McQ <37550899+Sean-McQ@users.noreply.github.com> Date: Wed, 27 Sep 2023 00:04:08 -0600 Subject: [PATCH] enableRowActions looking at the wrong schema (#9759) --- shell/list/management.cattle.io.feature.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/list/management.cattle.io.feature.vue b/shell/list/management.cattle.io.feature.vue index a371ea065c0..6a6cf663778 100644 --- a/shell/list/management.cattle.io.feature.vue +++ b/shell/list/management.cattle.io.feature.vue @@ -82,7 +82,7 @@ export default { }, enableRowActions() { - const schema = this.$store.getters[`management/schemaFor`](MANAGEMENT.SETTING); + const schema = this.$store.getters[`management/schemaFor`](MANAGEMENT.FEATURE); return schema?.resourceMethods?.includes('PUT'); },