mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-25 05:50:01 +00:00
14 lines
613 B
Plaintext
14 lines
613 B
Plaintext
.mb-2.d-flex.align-items-center(*ngFor='let pair of vars')
|
|
.input-group
|
|
input.form-control.w-25.text-monospace([(ngModel)]='pair.key', (blur)='emitUpdate()', placeholder='Variable name')
|
|
.input-group-append
|
|
.input-group-text =
|
|
input.form-control.w-50.text-monospace([(ngModel)]='pair.value', (blur)='emitUpdate()', placeholder='Value')
|
|
.input-group-append
|
|
button.btn.btn-secondary((click)='removeEnvironmentVar(pair.key)')
|
|
i.fas.fa-fw.fa-trash
|
|
|
|
button.btn.btn-secondary((click)='addEnvironmentVar()')
|
|
i.fas.fa-plus.mr-2
|
|
span Add
|