Correct keys for other instances where `set` was replaced

Signed-off-by: Phillip Rak <rak.phillip@gmail.com>
This commit is contained in:
Phillip Rak 2024-09-27 15:21:13 -07:00
parent 4236b21448
commit 0d6987f41f
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}
});
},