From 0d6987f41fe3df80cf85a6ac2b02004fc18f4da6 Mon Sep 17 00:00:00 2001 From: Phillip Rak Date: Fri, 27 Sep 2024 15:21:13 -0700 Subject: [PATCH] Correct keys for other instances where `set` was replaced Signed-off-by: Phillip Rak --- shell/edit/provisioning.cattle.io.cluster/rke2.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/shell/edit/provisioning.cattle.io.cluster/rke2.vue b/shell/edit/provisioning.cattle.io.cluster/rke2.vue index 1532db8719..d6c379fd7c 100644 --- a/shell/edit/provisioning.cattle.io.cluster/rke2.vue +++ b/shell/edit/provisioning.cattle.io.cluster/rke2.vue @@ -1563,7 +1563,7 @@ export default { this.addonNames.forEach((name) => { const chartValues = this.versionInfo[name]?.questions ? this.initYamlEditor(name) : {}; - this.userChartValuesTemp.name = chartValues; + this.userChartValuesTemp[name] = chartValues; }); this.refreshComponentWithYamls(key); }, @@ -1589,7 +1589,7 @@ export default { }, updateValues(name, values) { - this.userChartValuesTemp.name = values; + this.userChartValuesTemp[name] = values; this.syncChartValues(name); }, @@ -1873,7 +1873,7 @@ export default { const userValues = this.userChartValues[key]; if (userValues) { - rkeConfig.chartValues.name = userValues; + rkeConfig.chartValues[name] = userValues; } }); },