1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-08 11:33:28 +00:00

style fixes, more descriptive naming

This commit is contained in:
Thomas Rittson
2021-06-03 08:47:02 +10:00
parent a2c278471b
commit c12ceb4877
2 changed files with 19 additions and 15 deletions

View File

@@ -27,8 +27,9 @@
<span class="flex-right">{{loginCiphers.length}}</span>
</div>
<div class="box-content">
<app-cipher-row *ngFor="let c of loginCiphers" [cipher]="c" title="{{'autoFill' | i18n}}" [showView]="true"
(onSelected)="fillCipher($event)" (onView)="viewCipher($event)">
<app-cipher-row *ngFor="let loginCipher of loginCiphers" [cipher]="loginCipher"
title="{{'autoFill' | i18n}}" [showView]="true" (onSelected)="fillCipher($event)"
(onView)="viewCipher($event)">
</app-cipher-row>
<div class="box-content-row padded no-hover" *ngIf="!loginCiphers.length">
<p class="text-center">{{'autoFillInfo' | i18n}}</p>
@@ -44,7 +45,7 @@
<span class="flex-right">{{cardCiphers.length}}</span>
</div>
<div class="box-content">
<app-cipher-row *ngFor="let c of cardCiphers" [cipher]="c" title="{{'autoFill' | i18n}}" [showView]="true"
<app-cipher-row *ngFor="let cardCipher of cardCiphers" [cipher]="cardCipher" title="{{'autoFill' | i18n}}" [showView]="true"
(onSelected)="fillCipher($event)" (onView)="viewCipher($event)"></app-cipher-row>
</div>
</div>
@@ -54,7 +55,7 @@
<span class="flex-right">{{identityCiphers.length}}</span>
</div>
<div class="box-content">
<app-cipher-row *ngFor="let c of identityCiphers" [cipher]="c" title="{{'autoFill' | i18n}}" [showView]="true"
<app-cipher-row *ngFor="let identityCipher of identityCiphers" [cipher]="identityCipher" title="{{'autoFill' | i18n}}" [showView]="true"
(onSelected)="fillCipher($event)" (onView)="viewCipher($event)"></app-cipher-row>
</div>
</div>