From 0179242f0470a18581199be3fd972049fd4b9437 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Wed, 9 Mar 2016 16:31:53 +0530 Subject: [PATCH] [fix] [hot] setup wizard domain --- erpnext/public/js/setup_wizard.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/erpnext/public/js/setup_wizard.js b/erpnext/public/js/setup_wizard.js index e6b636cc46..5e16dd89d2 100644 --- a/erpnext/public/js/setup_wizard.js +++ b/erpnext/public/js/setup_wizard.js @@ -24,12 +24,12 @@ function load_erpnext_slides() { placeholder: __('e.g. "XYZ National Bank"'), reqd:1 }, {fieldname:'domain', label: __('Domain'), fieldtype:'Select', options: [ - __("Distribution"), - __("Manufacturing"), - __("Retail"), - __("Services"), - __("Education"), - __("Other") + {"label": __("Distribution"), "value": "Distribution"}, + {"label": __("Manufacturing"), "value": "Manufacturing"}, + {"label": __("Retail"), "value": "Retail"}, + {"label": __("Services"), "value": "Services"}, + {"label": __("Education"), "value": "Education"}, + {"label": __("Other"), "value": "Other"}, ], reqd:1}, {fieldname:'chart_of_accounts', label: __('Chart of Accounts'), options: "", fieldtype: 'Select'},