1
0
mirror of https://github.com/bitwarden/browser synced 2025-01-04 06:15:37 +01:00

Fixed issue with strict equals operator (#1141)

This commit is contained in:
Vincent Salucci 2020-02-10 11:05:06 -06:00 committed by GitHub
parent e7148145b2
commit 7f6a909b63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,7 @@ export class AddEditComponent extends BaseAddEditComponent {
this.editMode = !params.cipherId;
if (params.cloneMode != null) {
this.cloneMode = params.cloneMode === true;
this.cloneMode = params.cloneMode === 'true';
}
await this.load();