mirror of
https://github.com/bitwarden/browser
synced 2026-03-01 19:11:22 +00:00
* [PM-32502] fixed icon / copy value spacing in button on send access page * [PM-32502] using more approriate button configuration on send access
24 lines
671 B
HTML
24 lines
671 B
HTML
<bit-form-field [formGroup]="formGroup">
|
|
<textarea id="text" bitInput rows="8" name="Text" formControlName="sendText" readonly></textarea>
|
|
</bit-form-field>
|
|
<div class="tw-mb-3">
|
|
@if (send.text.hidden) {
|
|
<button bitButton type="button" buttonType="secondary" [block]="true" (click)="toggleText()">
|
|
<bit-icon class="bwi-lg" [name]="showText ? 'bwi-eye' : 'bwi-eye-slash'"></bit-icon>
|
|
{{ "toggleVisibility" | i18n }}
|
|
</button>
|
|
}
|
|
</div>
|
|
<div class="tw-mb-3">
|
|
<button
|
|
bitButton
|
|
type="button"
|
|
buttonType="primary"
|
|
[block]="true"
|
|
(click)="copyText()"
|
|
startIcon="bwi-clone"
|
|
>
|
|
{{ "copyValue" | i18n }}
|
|
</button>
|
|
</div>
|