feat: env variable substitutions

This commit is contained in:
DenserMeerkat
2024-06-16 22:14:27 +05:30
parent 41a7f2ccf9
commit ebe576a118
7 changed files with 108 additions and 8 deletions

View File

@ -89,8 +89,10 @@ class EditEnvironmentSecretsState
? null
: (value) {
if (value != null) {
secretRows[index] =
secretRows[index].copyWith(enabled: value);
setState(() {
secretRows[index] =
secretRows[index].copyWith(enabled: value);
});
}
_onFieldChange(selectedId!);
},

View File

@ -89,8 +89,10 @@ class EditEnvironmentVariablesState
? null
: (value) {
if (value != null) {
variableRows[index] =
variableRows[index].copyWith(enabled: value);
setState(() {
variableRows[index] =
variableRows[index].copyWith(enabled: value);
});
}
_onFieldChange(selectedId!);
},