Add Angular trackBy function (#27)

This commit is contained in:
ShirokaiLon 2019-02-03 03:29:29 +00:00 committed by Kyle Spearrin
parent 04e6fac5e4
commit d1f2932f1c
1 changed files with 4 additions and 0 deletions

View File

@ -264,6 +264,10 @@ export class AddEditComponent implements OnInit {
}
}
trackByFunction(index: number, uri: LoginUriView) {
return index;
}
cancel() {
this.onCancelled.emit(this.cipher);
}