File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ const Options = ({dispatch, options}) =>
58
58
< Form . Select
59
59
label = 'Identifier Names Generator'
60
60
value = { options . identifierNamesGenerator }
61
+ fluid
61
62
onChange = { ( event , { value} ) => dispatch ( actions . setIdentifierNamesGenerator ( value ) ) }
62
63
options = { IDENTIFIER_NAMES_GENERATOR_OPTIONS } />
63
64
@@ -134,6 +135,7 @@ const Options = ({dispatch, options}) =>
134
135
< Form . Select
135
136
disabled = { ! options . stringArrayEncodingEnabled }
136
137
label = 'String Array Encoding'
138
+ fluid
137
139
value = { options . stringArrayEncoding }
138
140
onChange = { ( event , { value} ) => dispatch ( actions . setStringArrayEncoding ( value ) ) }
139
141
options = { STRING_ARRAY_ENCODING_OPTIONS } />
@@ -213,6 +215,7 @@ const Options = ({dispatch, options}) =>
213
215
< Form . Select
214
216
label = 'Sourcemaps'
215
217
value = { options . sourceMapMode }
218
+ fluid
216
219
onChange = { ( event , { value} ) => dispatch ( actions . setSourceMapMode ( value ) ) }
217
220
options = { SOURCEMAP_OPTIONS } />
218
221
@@ -246,6 +249,7 @@ const Options = ({dispatch, options}) =>
246
249
< Form . Select
247
250
label = 'Target'
248
251
value = { options . target }
252
+ fluid
249
253
onChange = { ( event , { value} ) => dispatch ( actions . setTarget ( value ) ) }
250
254
options = { TARGET_OPTIONS } />
251
255
You can’t perform that action at this time.
0 commit comments