Skip to content

Commit

Permalink
fix incorrect html min attribute in password generator policy
Browse files Browse the repository at this point in the history
  • Loading branch information
audreyality committed Nov 19, 2024
1 parent d09f047 commit 2507459
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ <h3 bitTypography="h3" class="tw-mt-4">{{ "passphrase" | i18n }}</h3>
<div class="tw-grid tw-grid-cols-12 tw-gap-4">
<bit-form-field class="tw-col-span-6">
<bit-label>{{ "minimumNumberOfWords" | i18n }}</bit-label>
<input bitInput type="number" min="6" max="20" formControlName="minNumberWords" />
<input bitInput type="number" min="3" max="20" formControlName="minNumberWords" />
</bit-form-field>
</div>
<bit-form-control>
Expand Down

0 comments on commit 2507459

Please sign in to comment.