1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

lint fixes

This commit is contained in:
Kyle Spearrin
2018-01-24 09:26:59 -05:00
parent b16ae24d58
commit f2923d9c81
5 changed files with 5 additions and 14 deletions

View File

@@ -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);
}