mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
Forms: Make zip code a required field in predefined address form (#5405)
Closes #5401.
This commit is contained in:
parent
097ffbf8a3
commit
bf1a1368ff
@ -43,9 +43,9 @@ public class FormDataService
|
||||
Field.Create("Address Line 1", "buyerAddress1", null, true, null),
|
||||
Field.Create("Address Line 2", "buyerAddress2", null, false, null),
|
||||
Field.Create("City", "buyerCity", null, true, null),
|
||||
Field.Create("Postcode", "buyerZip", null, false, null),
|
||||
Field.Create("Postcode", "buyerZip", null, true, null),
|
||||
Field.Create("State", "buyerState", null, false, null),
|
||||
new SelectField()
|
||||
new SelectField
|
||||
{
|
||||
Name = "buyerCountry",
|
||||
Label = "Country",
|
||||
|
Loading…
Reference in New Issue
Block a user