1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-18 02:19:18 +00:00

reorder form fields to match design specs (#18964)

This commit is contained in:
John Harrington
2026-02-13 14:14:06 -07:00
committed by GitHub
parent 323f30c8e9
commit bd9734c14c

View File

@@ -21,20 +21,6 @@
[originalSendView]="originalSendView"
></tools-send-file-details>
<bit-form-field *ngIf="sendLink">
<bit-label>{{ "sendLink" | i18n }}</bit-label>
<input data-testid="send-link" bitInput type="text" [value]="sendLink" disabled />
<button
type="button"
bitSuffix
showToast
bitIconButton="bwi-clone"
[appCopyClick]="sendLink"
[valueLabel]="'sendLink' | i18n"
[label]="'copySendLink' | i18n"
></button>
</bit-form-field>
<bit-form-field>
<bit-label>{{ "deletionDate" | i18n }}</bit-label>
<bit-select
@@ -126,6 +112,20 @@
<bit-hint>{{ "enterMultipleEmailsSeparatedByComma" | i18n }}</bit-hint>
</bit-form-field>
}
<bit-form-field *ngIf="sendLink" class="tw-mt-4">
<bit-label>{{ "sendLink" | i18n }}</bit-label>
<input data-testid="send-link" bitInput type="text" [value]="sendLink" disabled />
<button
type="button"
bitSuffix
showToast
bitIconButton="bwi-clone"
[appCopyClick]="sendLink"
[valueLabel]="'sendLink' | i18n"
[label]="'copySendLink' | i18n"
></button>
</bit-form-field>
</bit-card>
<tools-send-options [config]="config" [originalSendView]="originalSendView"></tools-send-options>
</bit-section>