mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-24 11:55:50 +01:00
BEEEP: Colorize hidden custom field when value visible (#1380)
This commit is contained in:
parent
2f289ebd1f
commit
8880e9700e
@ -10,7 +10,11 @@
|
|||||||
{{ field.value || " " }}
|
{{ field.value || " " }}
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="field.type === fieldType.Hidden">
|
<div *ngIf="field.type === fieldType.Hidden">
|
||||||
<span *ngIf="field.showValue" class="monospaced show-whitespace">{{ field.value }}</span>
|
<span
|
||||||
|
*ngIf="field.showValue"
|
||||||
|
class="monospaced show-whitespace"
|
||||||
|
[innerHTML]="field.value | colorPassword"
|
||||||
|
></span>
|
||||||
<span *ngIf="!field.showValue" class="monospaced">{{ field.maskedValue }}</span>
|
<span *ngIf="!field.showValue" class="monospaced">{{ field.maskedValue }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div *ngIf="field.type === fieldType.Boolean">
|
<div *ngIf="field.type === fieldType.Boolean">
|
||||||
|
Loading…
Reference in New Issue
Block a user