1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 23:52:50 -05:00

[AC-1772] Check null or whitespace on GatewayCustomerId and BillingEmail (#3398)

* Check null or whitespace on GatewayCustomerId and BillingEmail

* Fixed expiration input
This commit is contained in:
Alex Morask
2023-11-02 10:23:28 -04:00
committed by GitHub
parent abc7b35a3d
commit cfe9812724
2 changed files with 5 additions and 2 deletions

View File

@ -259,7 +259,7 @@
<div class="col-sm">
<div class="form-group">
<label asp-for="ExpirationDate"></label>
<input type="datetime-local" class="form-control" asp-for="ExpirationDate" readonly='@(!canEditLicensing)'>
<input type="datetime-local" class="form-control" asp-for="ExpirationDate" readonly='@(!canEditLicensing)' step="1">
</div>
</div>
</div>