From c5e22f9aa3b18a133806d555f996183fd3fb6435 Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Wed, 4 Dec 2019 12:34:20 -0500 Subject: [PATCH] Update job redirects and tab placement Change display order of the output tab so that it is second and make it the default for redirects and job launches. --- awx/ui_next/src/screens/Job/Job.jsx | 6 +++--- awx/ui_next/src/screens/Job/JobTypeRedirect.jsx | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/awx/ui_next/src/screens/Job/Job.jsx b/awx/ui_next/src/screens/Job/Job.jsx index 5719a9a600..2178bfc2cf 100644 --- a/awx/ui_next/src/screens/Job/Job.jsx +++ b/awx/ui_next/src/screens/Job/Job.jsx @@ -76,8 +76,8 @@ class Job extends Component { } const tabsArray = [ - { name: i18n._(t`Output`), link: `${match.url}/output`, id: 0 }, - { name: i18n._(t`Details`), link: `${match.url}/details`, id: 1 }, + { name: i18n._(t`Details`), link: `${match.url}/details`, id: 0 }, + { name: i18n._(t`Output`), link: `${match.url}/output`, id: 1 }, ]; let cardHeader = ( @@ -115,7 +115,7 @@ class Job extends Component { if (lookup && job) { return ( - +