1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00: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

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();