diff --git a/shell/components/Questions/Reference.vue b/shell/components/Questions/Reference.vue index 6422468e4f2..1e78fa1aa75 100644 --- a/shell/components/Questions/Reference.vue +++ b/shell/components/Questions/Reference.vue @@ -130,18 +130,6 @@ export default { :all-resources-settings="allResourceSettings" @update:value="!$fetchState.pending && $emit('update:value', $event)" /> -
{{ typeSchema.attributes.kind }} in namespace {{ targetNamespace }} diff --git a/shell/detail/catalog.cattle.io.app.vue b/shell/detail/catalog.cattle.io.app.vue index cfc4fd328b0..c6702f3f50e 100644 --- a/shell/detail/catalog.cattle.io.app.vue +++ b/shell/detail/catalog.cattle.io.app.vue @@ -33,7 +33,7 @@ export default { async fetch() { const promises = { catalog: this.$store.dispatch('catalog/load'), - allOperations: this.$store.dispatch('cluster/findAll', { type: CATALOG.OPERATION }), // TODO: RC Round 2 + allOperations: this.$store.dispatch('cluster/findAll', { type: CATALOG.OPERATION }), secret: this.value.fetchValues(true), }; diff --git a/shell/detail/networking.k8s.io.ingress.vue b/shell/detail/networking.k8s.io.ingress.vue index fcd2574859f..3d514b006b0 100644 --- a/shell/detail/networking.k8s.io.ingress.vue +++ b/shell/detail/networking.k8s.io.ingress.vue @@ -4,7 +4,7 @@ import CreateEditView from '@shell/mixins/create-edit-view'; import Rules from '@shell/edit/networking.k8s.io.ingress/Rules'; import ResourceTabs from '@shell/components/form/ResourceTabs'; import Tab from '@shell/components/Tabbed/Tab'; -import IngressHelper from '@shell/utils/ingress'; +import IngressDetailEditHelper from '@shell/utils/ingress'; export default { name: 'CRUIngress', @@ -16,7 +16,7 @@ export default { }, mixins: [CreateEditView], async fetch() { - this.ingressHelper = new IngressHelper({ + this.ingressHelper = new IngressDetailEditHelper({ $store: this.$store, namespace: this.value.metadata.namespace }); diff --git a/shell/dialog/RollbackWorkloadDialog.vue b/shell/dialog/RollbackWorkloadDialog.vue index 38da88ab2e8..3fce5860b88 100644 --- a/shell/dialog/RollbackWorkloadDialog.vue +++ b/shell/dialog/RollbackWorkloadDialog.vue @@ -84,7 +84,7 @@ export default { }, fetch() { // Fetch revisions of the current workload - this.$store.dispatch('cluster/findAll', { type: this.revisionsType }) // TODO: RC workload + this.$store.dispatch('cluster/findAll', { type: this.revisionsType }) .then(( response ) => { const allRevisions = response; diff --git a/shell/edit/autoscaling.horizontalpodautoscaler/index.vue b/shell/edit/autoscaling.horizontalpodautoscaler/index.vue index aeabcd935ce..a27992d2533 100644 --- a/shell/edit/autoscaling.horizontalpodautoscaler/index.vue +++ b/shell/edit/autoscaling.horizontalpodautoscaler/index.vue @@ -173,7 +173,7 @@ export default { }, async loadWorkloads() { await Promise.all( - Object.values(SCALABLE_WORKLOAD_TYPES).map((type) => this.$store.dispatch('cluster/findAll', { type }) // TODO: RC workload + Object.values(SCALABLE_WORKLOAD_TYPES).map((type) => this.$store.dispatch('cluster/findAll', { type }) ) ); }, diff --git a/shell/edit/networking.k8s.io.ingress/index.vue b/shell/edit/networking.k8s.io.ingress/index.vue index a27b0792036..5ed99c29ecf 100644 --- a/shell/edit/networking.k8s.io.ingress/index.vue +++ b/shell/edit/networking.k8s.io.ingress/index.vue @@ -1,6 +1,6 @@