mirror of https://github.com/portainer/portainer
fix(edge/templates): get correct default value for selectType env vars EE-6796 (#11293)
parent
51c672af21
commit
ec913b45d6
|
@ -81,7 +81,15 @@ function Item({
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getDefaultValues(definitions: Array<TemplateEnv>): Value {
|
export function getDefaultValues(definitions: Array<TemplateEnv>): Value {
|
||||||
return Object.fromEntries(definitions.map((v) => [v.name, v.default || '']));
|
return Object.fromEntries(
|
||||||
|
definitions.map((v) => {
|
||||||
|
if (v.select) {
|
||||||
|
return [v.name, v.select.find((v) => v.default)?.value || ''];
|
||||||
|
}
|
||||||
|
|
||||||
|
return [v.name, v.default || ''];
|
||||||
|
})
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function envVarsFieldsetValidation(): SchemaOf<Value> {
|
export function envVarsFieldsetValidation(): SchemaOf<Value> {
|
||||||
|
|
Loading…
Reference in New Issue