Skip to content

Commit

Permalink
Merge pull request #11979 from nixocio/ui_move_boolean
Browse files Browse the repository at this point in the history
Move AWX_MOUNT_ISOLATED_PATHS_ON_K8S to be closer to other booleans
  • Loading branch information
nixocio committed Mar 30, 2022
2 parents 35907fd + 3b1a626 commit dac26e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions awx/ui/src/screens/Setting/Jobs/JobsEdit/JobsEdit.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,10 @@ function JobsEdit() {
name="AWX_SHOW_PLAYBOOK_LINKS"
config={jobs.AWX_SHOW_PLAYBOOK_LINKS}
/>
<BooleanField
name="AWX_MOUNT_ISOLATED_PATHS_ON_K8S"
config={jobs.AWX_MOUNT_ISOLATED_PATHS_ON_K8S}
/>
<ObjectField
name="AD_HOC_COMMANDS"
config={jobs.AD_HOC_COMMANDS}
Expand All @@ -212,10 +216,6 @@ function JobsEdit() {
name="AWX_ISOLATION_SHOW_PATHS"
config={jobs.AWX_ISOLATION_SHOW_PATHS}
/>
<BooleanField
name="AWX_MOUNT_ISOLATED_PATHS_ON_K8S"
config={jobs.AWX_MOUNT_ISOLATED_PATHS_ON_K8S}
/>
<ObjectField name="AWX_TASK_ENV" config={jobs.AWX_TASK_ENV} />
{submitError && <FormSubmitError error={submitError} />}
{revertError && <FormSubmitError error={revertError} />}
Expand Down

0 comments on commit dac26e5

Please sign in to comment.