mirror of https://github.com/rancher/dashboard.git
Correct keys for other instances where `set` was replaced
Signed-off-by: Phillip Rak <rak.phillip@gmail.com>
This commit is contained in:
parent
4236b21448
commit
0d6987f41f
|
|
@ -1563,7 +1563,7 @@ export default {
|
||||||
this.addonNames.forEach((name) => {
|
this.addonNames.forEach((name) => {
|
||||||
const chartValues = this.versionInfo[name]?.questions ? this.initYamlEditor(name) : {};
|
const chartValues = this.versionInfo[name]?.questions ? this.initYamlEditor(name) : {};
|
||||||
|
|
||||||
this.userChartValuesTemp.name = chartValues;
|
this.userChartValuesTemp[name] = chartValues;
|
||||||
});
|
});
|
||||||
this.refreshComponentWithYamls(key);
|
this.refreshComponentWithYamls(key);
|
||||||
},
|
},
|
||||||
|
|
@ -1589,7 +1589,7 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
updateValues(name, values) {
|
updateValues(name, values) {
|
||||||
this.userChartValuesTemp.name = values;
|
this.userChartValuesTemp[name] = values;
|
||||||
this.syncChartValues(name);
|
this.syncChartValues(name);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
@ -1873,7 +1873,7 @@ export default {
|
||||||
const userValues = this.userChartValues[key];
|
const userValues = this.userChartValues[key];
|
||||||
|
|
||||||
if (userValues) {
|
if (userValues) {
|
||||||
rkeConfig.chartValues.name = userValues;
|
rkeConfig.chartValues[name] = userValues;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue