mirror of
https://github.com/bitwarden/browser
synced 2026-02-12 06:23:38 +00:00
* 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 <>
22 lines
706 B
HTML
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>
|