mirror of
https://github.com/Eugeny/tabby.git
synced 2025-09-24 17:16:03 +00:00
fixed args field focus
This commit is contained in:
@@ -17,7 +17,7 @@
|
|||||||
.form-group
|
.form-group
|
||||||
label Arguments
|
label Arguments
|
||||||
.input-group(
|
.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(
|
input.form-control(
|
||||||
type='text',
|
type='text',
|
||||||
|
@@ -25,4 +25,8 @@ export class EditProfileModalComponent {
|
|||||||
cancel () {
|
cancel () {
|
||||||
this.modalInstance.dismiss()
|
this.modalInstance.dismiss()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
trackByIndex (index) {
|
||||||
|
return index
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user