SM-717-proj (#5832)
* SM-717 auto focus on project name * Update bitwarden_license/bit-web/src/app/secrets-manager/projects/dialog/project-dialog.component.html Co-authored-by: Thomas Avery <43214426+Thomas-Avery@users.noreply.github.com> * removing unused code * Setting auto focus on secrets and service account dialot * Adding auto focus to new access token dialog --------- Co-authored-by: Thomas Avery <43214426+Thomas-Avery@users.noreply.github.com>
This commit is contained in:
parent
5832235e47
commit
a26c94737a
|
@ -7,7 +7,7 @@
|
|||
</div>
|
||||
<bit-form-field *ngIf="!loading">
|
||||
<bit-label>{{ "projectName" | i18n }}</bit-label>
|
||||
<input formControlName="name" maxlength="1000" bitInput />
|
||||
<input appAutofocus formControlName="name" maxlength="1000" bitInput />
|
||||
</bit-form-field>
|
||||
</span>
|
||||
<ng-container bitDialogFooter>
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<div class="tw-flex tw-gap-4 tw-pt-4">
|
||||
<bit-form-field class="tw-w-1/3">
|
||||
<bit-label for="secret-name">{{ "name" | i18n }}</bit-label>
|
||||
<input formControlName="name" bitInput />
|
||||
<input appAutofocus formControlName="name" bitInput />
|
||||
</bit-form-field>
|
||||
<bit-form-field class="tw-w-full">
|
||||
<bit-label>{{ "value" | i18n }}</bit-label>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<div bitDialogContent>
|
||||
<bit-form-field>
|
||||
<bit-label>{{ "name" | i18n }}</bit-label>
|
||||
<input bitInput formControlName="name" />
|
||||
<input bitInput appAutofocus formControlName="name" />
|
||||
</bit-form-field>
|
||||
<sm-expiration-options
|
||||
formControlName="expirationDateControl"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<div *ngIf="!loading">
|
||||
<bit-form-field>
|
||||
<bit-label>{{ "serviceAccountName" | i18n }}</bit-label>
|
||||
<input formControlName="name" maxlength="1000" bitInput />
|
||||
<input appAutofocus formControlName="name" maxlength="1000" bitInput />
|
||||
</bit-form-field>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue