@@ -71,61 +71,50 @@ class AppSettings extends Component {
7171 return (
7272 < div >
7373 < div className = "row" >
74- < div className = "pageItem col-md-6" >
75- < label className = "itemLabel" > Export Directory</ label >
76- < div className = "input-group" >
77- < input
78- className = "form-control"
79- name = "exportDir"
80- type = "text"
81- value = { this . state . exportDir }
82- disabled
83- />
84- < a
85- href = "#"
86- className = "input-group-customized "
87- onClick = { this . selectExportDir } >
88- < i className = "ion-folder" />
89- </ a >
90- </ div >
91- </ div >
74+ < div className = "col-md-12" >
75+ < div className = "pageItem" >
76+ < label className = "itemLabel" > Export Directory</ label >
9277
93- < div className = "pageItem col-md-6" >
94- < label className = "itemLabel" > Template</ label >
95- < select
96- name = "template"
97- value = { this . state . template }
98- onChange = { this . handleInputChange } >
99- < option value = "minimal" > Minimal</ option >
100- < option value = "business" > Business</ option >
101- { /*
102- <option value="modern">Modern</option>
103- */ }
104- </ select >
78+ < div className = "input-group" >
79+ < input
80+ className = "form-control"
81+ name = "exportDir"
82+ type = "text"
83+ value = { this . state . exportDir }
84+ disabled
85+ />
86+ < a
87+ href = "#"
88+ className = "input-group-customized "
89+ onClick = { this . selectExportDir } >
90+ < i className = "ion-folder" />
91+ </ a >
92+ </ div >
93+ </ div >
10594 </ div >
10695 </ div >
10796
10897 < div className = "row" >
10998 < div className = "col-md-6" >
11099 < div className = "pageItem" >
111- < label className = "itemLabel" > Default Language </ label >
100+ < label className = "itemLabel" > Default Currency </ label >
112101 < select
113- name = "language "
114- value = { this . state . language }
102+ name = "currency "
103+ value = { this . state . currency }
115104 onChange = { this . handleInputChange } >
116- < option value = "en" > English</ option >
117- < option value = "vi" > Vietnamese</ option >
105+ { currenciesOptions }
118106 </ select >
119107 </ div >
120108 </ div >
121109 < div className = "col-md-6" >
122110 < div className = "pageItem" >
123- < label className = "itemLabel" > Default Currency </ label >
111+ < label className = "itemLabel" > Default Template </ label >
124112 < select
125- name = "currency "
126- value = { this . state . currency }
113+ name = "template "
114+ value = { this . state . template }
127115 onChange = { this . handleInputChange } >
128- { currenciesOptions }
116+ < option value = "minimal" > Minimal</ option >
117+ < option value = "business" > Business</ option >
129118 </ select >
130119 </ div >
131120 </ div >
@@ -146,7 +135,7 @@ class AppSettings extends Component {
146135 </ div >
147136 < div className = "col-md-6" >
148137 < div className = "pageItem" >
149- < label className = "itemLabel" > Muted ?</ label >
138+ < label className = "itemLabel" > Mute Sound ?</ label >
150139 < label className = "switch" >
151140 < input
152141 name = "muted"
0 commit comments