Forms: Make zip code a required field in predefined address form (#5405)

Closes #5401.
This commit is contained in:
d11n 2023-10-18 12:21:56 +02:00 committed by GitHub
parent 097ffbf8a3
commit bf1a1368ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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",