mirror of
https://github.com/portainer/portainer.git
synced 2025-07-23 15:29:42 +02:00
refactor(app): migrate env var form section [EE-6232] (#10499)
* refactor(app): migrate env var form section [EE-6232] * allow undoing delete in inputlist
This commit is contained in:
parent
6228314e3c
commit
488393007f
16 changed files with 274 additions and 209 deletions
|
@ -70,12 +70,11 @@ export class KubernetesApplicationConfigurationFormValue {
|
|||
* KubernetesApplicationEnvironmentVariableFormValue Model
|
||||
*/
|
||||
const _KubernetesApplicationEnvironmentVariableFormValue = Object.freeze({
|
||||
Name: '',
|
||||
Value: '',
|
||||
IsSecret: false,
|
||||
NeedsDeletion: false,
|
||||
IsNew: true,
|
||||
NameIndex: '', // keep the original name for sorting
|
||||
name: '',
|
||||
value: '',
|
||||
needsDeletion: false,
|
||||
isNew: true,
|
||||
nameIndex: '', // keep the original name for sorting
|
||||
});
|
||||
|
||||
export class KubernetesApplicationEnvironmentVariableFormValue {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue