diff --git a/src/popup/vault/add-edit.component.ts b/src/popup/vault/add-edit.component.ts index 0e28beab419..d6f5bd73397 100644 --- a/src/popup/vault/add-edit.component.ts +++ b/src/popup/vault/add-edit.component.ts @@ -75,10 +75,12 @@ export class AddEditComponent extends BaseAddEditComponent { await this.load(); if (!this.editMode || this.cloneMode) { - if (params.name && (this.cipher.name == null || this.cipher.name === '')) { + if (!this.popupUtilsService.inPopout(window) && params.name && + (this.cipher.name == null || this.cipher.name === '')) { this.cipher.name = params.name; } - if (params.uri && (this.cipher.login.uris[0].uri == null || this.cipher.login.uris[0].uri === '')) { + if (!this.popupUtilsService.inPopout(window) && params.uri && + (this.cipher.login.uris[0].uri == null || this.cipher.login.uris[0].uri === '')) { this.cipher.login.uris[0].uri = params.uri; } }