mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 14:23:32 +00:00
* updating the text area for notes to have 5 rows * Applying the row count to the edit page as well --------- Co-authored-by: --global <>
33 lines
1.0 KiB
HTML
33 lines
1.0 KiB
HTML
<bit-section [formGroup]="additionalOptionsForm">
|
|
<bit-section-header>
|
|
<h2 bitTypography="h6">{{ "additionalOptions" | i18n }}</h2>
|
|
</bit-section-header>
|
|
|
|
<bit-card>
|
|
<bit-form-field>
|
|
<bit-label>{{ "notes" | i18n }}</bit-label>
|
|
<textarea bitInput rows="5" formControlName="notes"></textarea>
|
|
</bit-form-field>
|
|
<bit-form-control
|
|
*ngIf="passwordRepromptEnabled$ | async"
|
|
[disableMargin]="hasCustomFields || isPartialEdit"
|
|
>
|
|
<input type="checkbox" bitCheckbox formControlName="reprompt" />
|
|
<bit-label>{{ "passwordPrompt" | i18n }}</bit-label>
|
|
</bit-form-control>
|
|
|
|
<button
|
|
bitLink
|
|
type="button"
|
|
linkType="primary"
|
|
*ngIf="!hasCustomFields && !isPartialEdit"
|
|
(click)="addCustomField()"
|
|
>
|
|
<i class="bwi bwi-plus tw-font-bold" aria-hidden="true"></i>
|
|
{{ "addField" | i18n }}
|
|
</button>
|
|
</bit-card>
|
|
</bit-section>
|
|
|
|
<vault-custom-fields (numberOfFieldsChange)="handleCustomFieldChange($event)"></vault-custom-fields>
|