mirror of
https://github.com/eugeny/tabby
synced 2026-08-21 13:26:53 +00:00
fixed args field focus
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
.form-group
|
||||
label Arguments
|
||||
.input-group(
|
||||
*ngFor='let arg of profile.sessionOptions.args; index as i',
|
||||
*ngFor='let arg of profile.sessionOptions.args; index as i; trackBy: trackByIndex',
|
||||
)
|
||||
input.form-control(
|
||||
type='text',
|
||||
|
||||
@@ -25,4 +25,8 @@ export class EditProfileModalComponent {
|
||||
cancel () {
|
||||
this.modalInstance.dismiss()
|
||||
}
|
||||
|
||||
trackByIndex (index) {
|
||||
return index
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user