1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-12 06:23:38 +00:00
Files
browser/libs/vault/src/cipher-view/additional-options/additional-options.component.html
cd-bitwarden 83dc66dd56 [PM-14345] Enabling drag and drop for cipher fields (#12067)
* enabling drag and drop for cipher fields

* adding drag and drop to totp and fido

* removing code changes to wrong file

* undoing uneeded change

* Changes suggested by Shane

* fixes

* fixes

* moving export to the correct spot

---------

Co-authored-by: --global <>
2024-12-10 12:55:02 -05:00

22 lines
706 B
HTML

<bit-section>
<bit-section-header>
<h2 bitTypography="h6">{{ "additionalOptions" | i18n }}</h2>
</bit-section-header>
<bit-card class="[&_bit-form-field:last-of-type]:tw-mb-0">
<bit-form-field disableReadOnlyBorder>
<bit-label [appTextDrag]="notes">{{ "note" | i18n }}</bit-label>
<textarea readonly id="notes" bitInput rows="5" aria-readonly="true">{{ notes }}</textarea>
<button
bitSuffix
bitIconButton="bwi-clone"
size="small"
type="button"
[appCopyClick]="notes"
showToast
[valueLabel]="'note' | i18n"
[appA11yTitle]="'copyNotes' | i18n"
></button>
</bit-form-field>
</bit-card>
</bit-section>