1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-08-26 23:09:46 +02:00

default folderId null

This commit is contained in:
Kyle Spearrin 2018-04-10 00:04:39 -04:00
parent cd1828da23
commit f8d8ca2253

View File

@ -29,7 +29,7 @@ import { LoginView } from '../../models/view/loginView';
import { SecureNoteView } from '../../models/view/secureNoteView';
export class AddEditComponent {
@Input() folderId: string;
@Input() folderId: string = null;
@Input() cipherId: string;
@Input() type: CipherType;
@Output() onSavedCipher = new EventEmitter<CipherView>();