diff --git a/src/popup/components/action-buttons.component.html b/src/popup/components/action-buttons.component.html index 5d81817e9ca..a3caa2c9337 100644 --- a/src/popup/components/action-buttons.component.html +++ b/src/popup/components/action-buttons.component.html @@ -2,7 +2,7 @@ - diff --git a/src/popup/components/action-buttons.component.ts b/src/popup/components/action-buttons.component.ts index 605ca6f63ab..8cc92d88422 100644 --- a/src/popup/components/action-buttons.component.ts +++ b/src/popup/components/action-buttons.component.ts @@ -29,7 +29,7 @@ import { PopupUtilsService } from '../services/popup-utils.service'; }) export class ActionButtonsComponent { @Output() onView = new EventEmitter(); - @Output() onLaunch = new EventEmitter(); + @Output() launchEvent = new EventEmitter(); @Input() cipher: CipherView; @Input() showView = false; @@ -45,8 +45,8 @@ export class ActionButtonsComponent { this.userHasPremiumAccess = await this.userService.canAccessPremium(); } - launch() { - this.onLaunch.emit(this.cipher); + launchCipher() { + this.launchEvent.emit(this.cipher); } async copy(cipher: CipherView, value: string, typeI18nKey: string, aType: string) { diff --git a/src/popup/components/ciphers-list.component.html b/src/popup/components/ciphers-list.component.html index 39217fe5c13..6c8c4a407b3 100644 --- a/src/popup/components/ciphers-list.component.html +++ b/src/popup/components/ciphers-list.component.html @@ -1,4 +1,4 @@ -
@@ -17,7 +17,7 @@ {{c.subTitle}}
-
diff --git a/src/popup/components/ciphers-list.component.ts b/src/popup/components/ciphers-list.component.ts index 81b477af3d0..4c1101826c6 100644 --- a/src/popup/components/ciphers-list.component.ts +++ b/src/popup/components/ciphers-list.component.ts @@ -15,7 +15,7 @@ import { CipherView } from 'jslib/models/view/cipherView'; }) export class CiphersListComponent { @Output() onSelected = new EventEmitter(); - @Output() onDoubleSelected = new EventEmitter(); + @Output() launchEvent = new EventEmitter(); @Output() onView = new EventEmitter(); @Input() ciphers: CipherView[]; @Input() showView = false; @@ -27,8 +27,8 @@ export class CiphersListComponent { this.onSelected.emit(c); } - doubleSelectCipher(c: CipherView) { - this.onDoubleSelected.emit(c); + launchCipher(c: CipherView) { + this.launchEvent.emit(c); } viewCipher(c: CipherView) { diff --git a/src/popup/vault/ciphers.component.html b/src/popup/vault/ciphers.component.html index 05f4eeb0946..3581afa21d1 100644 --- a/src/popup/vault/ciphers.component.html +++ b/src/popup/vault/ciphers.component.html @@ -72,7 +72,7 @@
+ (onSelected)="selectCipher($event)" (launchEvent)="launchCipher($event)">