diff --git a/src/app/vault/view.component.html b/src/app/vault/view.component.html index cbbf1a76f6..140135c83d 100644 --- a/src/app/vault/view.component.html +++ b/src/app/vault/view.component.html @@ -18,7 +18,7 @@ + (click)="copy(cipher.login.uri, 'URI')"> @@ -29,7 +29,7 @@
+ (click)="copy(cipher.login.username, 'Username')">
@@ -44,7 +44,7 @@ [ngClass]="{'fa-eye': !showPassword, 'fa-eye-slash': showPassword}"> + (click)="copy(cipher.login.password, 'Password')">
@@ -56,7 +56,7 @@ *ngIf="cipher.login.totp && totpCode">
+ (click)="copy(totpCode, 'TOTP')">
@@ -83,7 +83,7 @@
+ (click)="copy(cipher.card.number, 'Number')">
@@ -101,7 +101,7 @@
@@ -180,7 +180,8 @@ [ngClass]="{'fa-eye': !field.showValue, 'fa-eye-slash': field.showValue}"> + *ngIf="field.value && field.type !== fieldType.Boolean" + (click)="copy(field.value, 'Field')">