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

Admin: Update Stripe Customer Email on Organization Edit (#3281)

* Admin: Update Stripe customer email on organization billing email update

* Conner's feedback
This commit is contained in:
Alex Morask
2023-09-25 10:16:19 -04:00
committed by GitHub
parent 44baba9229
commit 0b72eb8e45
2 changed files with 23 additions and 2 deletions

View File

@ -277,7 +277,13 @@
}
else
{
<input type="email" class="form-control" asp-for="BillingEmail" readonly='@(!canEditBilling)'>
<input
type="text"
class="form-control"
asp-for="BillingEmail"
readonly='@(!canEditBilling)'
pattern="@(@"[^@\s]+@[^@\s]+\.[^@\s]+")"
title="Email address must be in the format 'address@domain.com'.">
}
</div>
</div>