mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
lint fixes
This commit is contained in:
@@ -4,7 +4,6 @@ import {
|
||||
Component,
|
||||
EventEmitter,
|
||||
Input,
|
||||
OnChanges,
|
||||
Output,
|
||||
} from '@angular/core';
|
||||
|
||||
@@ -12,18 +11,10 @@ import {
|
||||
selector: 'app-vault-ciphers',
|
||||
template: template,
|
||||
})
|
||||
export class CiphersComponent implements OnChanges {
|
||||
export class CiphersComponent {
|
||||
@Input() ciphers: any[];
|
||||
@Output() onCipherClicked = new EventEmitter<any>();
|
||||
|
||||
constructor() {
|
||||
|
||||
}
|
||||
|
||||
ngOnChanges() {
|
||||
|
||||
}
|
||||
|
||||
cipherClicked(cipher: any) {
|
||||
this.onCipherClicked.emit(cipher);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user