Skip to content

Commit 57b521e

Browse files
committed
Moved ignoreRequireImports option to the common options column
1 parent 5ec57a8 commit 57b521e

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

App/containers/OptionsContainer.js

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,13 @@ const Options = ({dispatch, options}) => {
159159

160160
<Divider/>
161161

162+
<Form.Checkbox
163+
label='Ignore Require Imports'
164+
checked={options.ignoreRequireImports}
165+
onChange={() => dispatch(actions.toggleOption(types.TOGGLE_IGNORE_REQUIRE_IMPORTS))}/>
166+
167+
<Divider/>
168+
162169
<EntryInputContainer
163170
label='Domain lock'
164171
disabled={!options.domainLockEnabled}
@@ -338,11 +345,6 @@ const Options = ({dispatch, options}) => {
338345
entries={options.reservedStrings}
339346
buttonIcon="plus"/>
340347

341-
<Form.Checkbox
342-
label='Ignore Require Imports'
343-
checked={options.ignoreRequireImports}
344-
onChange={() => dispatch(actions.toggleOption(types.TOGGLE_IGNORE_REQUIRE_IMPORTS))}/>
345-
346348
</Segment>
347349
</Grid.Column>
348350

0 commit comments

Comments
 (0)