1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

fix lint issues

This commit is contained in:
Kyle Spearrin
2019-03-27 14:46:34 -04:00
parent a22bb09fc3
commit f39bdc4269
4 changed files with 8 additions and 4 deletions

View File

@@ -1,4 +1,7 @@
import { CdkDragDrop, moveItemInArray } from '@angular/cdk/drag-drop';
import {
CdkDragDrop,
moveItemInArray,
} from '@angular/cdk/drag-drop';
import {
EventEmitter,
Input,
@@ -346,7 +349,6 @@ export class AddEditComponent implements OnInit {
u.showOptions = u.showOptions == null ? true : u.showOptions;
}
drop(event: CdkDragDrop<string[]>) {
moveItemInArray(this.cipher.fields, event.previousIndex, event.currentIndex);
}