1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-06 05:28:51 +02:00

Remove max from minutes in vault timeout input (#1239)

This commit is contained in:
Oscar Hinton 2021-10-14 15:54:50 +02:00 committed by GitHub
parent 1b8f316066
commit db9ab9f51e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@
<small>{{'hours' | i18n }}</small>
</div>
<div class="col-6">
<input id="minutes" class="form-control" type="number" min="0" max="59" name="minutes"
<input id="minutes" class="form-control" type="number" min="0" name="minutes"
formControlName="minutes">
<small>{{'minutes' | i18n }}</small>
</div>