From b28f2908a6c2b400e51dbd361a66cebfd630f149 Mon Sep 17 00:00:00 2001 From: Rob Harrington Date: Thu, 2 Mar 2017 15:03:54 +1100 Subject: [PATCH] Fix 'postcode' typo in standing order form --- app/views/admin/standing_orders/_address.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/admin/standing_orders/_address.html.haml b/app/views/admin/standing_orders/_address.html.haml index ecf86b87cb..18b5e4504c 100644 --- a/app/views/admin/standing_orders/_address.html.haml +++ b/app/views/admin/standing_orders/_address.html.haml @@ -72,7 +72,7 @@ .error{ ng: { show: 'submitted && standing_order_address_form.ship_address_city.$error.required' } }= t(:error_required) .error{ ng: { repeat: 'error in errors.ship_address.city', show: 'standing_order_address_form.ship_address_city.$pristine' } } {{ error }} .field - %label{ for: "ship_address_zipcode"}= t(:potcode) + %label{ for: "ship_address_zipcode"}= t(:postcode) %input.fullwidth#ship_address_zipcode{ name: 'ship_address_zipcode', type: 'text', required: true, ng: { model: "standingOrder.ship_address.zipcode" } } .error{ ng: { show: 'submitted && standing_order_address_form.ship_address_zipcode.$error.required' } }= t(:error_required) .error{ ng: { repeat: 'error in errors.ship_address.zipcode', show: 'standing_order_address_form.ship_address_zipcode.$pristine' } } {{ error }}