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

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