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

fix cipher launch button in various places

This commit is contained in:
Thomas Rittson 2021-02-03 06:48:57 +10:00
parent 07f5be39d8
commit 7b2c519c8e

View File

@ -30,7 +30,7 @@
</div> </div>
<div class="box-content"> <div class="box-content">
<app-ciphers-list [ciphers]="favoriteCiphers" title="{{'viewItem' | i18n}}" <app-ciphers-list [ciphers]="favoriteCiphers" title="{{'viewItem' | i18n}}"
(onSelected)="selectCipher($event)" (onDoubleSelected)="launchCipher($event)"></app-ciphers-list> (onSelected)="selectCipher($event)" (launchEvent)="launchCipher($event)"></app-ciphers-list>
</div> </div>
</div> </div>
<div class="box list"> <div class="box list">
@ -118,7 +118,7 @@
</div> </div>
<div class="box-content"> <div class="box-content">
<app-ciphers-list [ciphers]="noFolderCiphers" title="{{'viewItem' | i18n}}" <app-ciphers-list [ciphers]="noFolderCiphers" title="{{'viewItem' | i18n}}"
(onSelected)="selectCipher($event)" (onDoubleSelected)="launchCipher($event)"></app-ciphers-list> (onSelected)="selectCipher($event)" (launchEvent)="launchCipher($event)"></app-ciphers-list>
</div> </div>
</div> </div>
<div class="box list" *ngIf="deletedCount"> <div class="box list" *ngIf="deletedCount">
@ -146,7 +146,7 @@
<div class="box list full-list" *ngIf="ciphers && ciphers.length > 0"> <div class="box list full-list" *ngIf="ciphers && ciphers.length > 0">
<div class="box-content"> <div class="box-content">
<app-ciphers-list [ciphers]="ciphers" title="{{'viewItem' | i18n}}" (onSelected)="selectCipher($event)" <app-ciphers-list [ciphers]="ciphers" title="{{'viewItem' | i18n}}" (onSelected)="selectCipher($event)"
(onDoubleSelected)="launchCipher($event)"></app-ciphers-list> (launchEvent)="launchCipher($event)"></app-ciphers-list>
</div> </div>
</div> </div>
</ng-container> </ng-container>