From 468685bf75778d6eb824dad156cb547240410167 Mon Sep 17 00:00:00 2001 From: Phillip Rak Date: Mon, 14 Oct 2024 10:27:06 -0700 Subject: [PATCH] Replace remaining instances of `\$delete` with `delete` Signed-off-by: Phillip Rak --- shell/chart/monitoring/prometheus/index.vue | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/shell/chart/monitoring/prometheus/index.vue b/shell/chart/monitoring/prometheus/index.vue index 17e753cb8eb..191e558c376 100644 --- a/shell/chart/monitoring/prometheus/index.vue +++ b/shell/chart/monitoring/prometheus/index.vue @@ -130,10 +130,7 @@ export default { } }; } else { - this.$delete( - this.value.prometheus.prometheusSpec.storageSpec, - 'volumeClaimTemplate' - ); + delete this.value.prometheus.prometheusSpec.storageSpec['volumeClaimTemplate']; } }, },