From c3f1892d9befc94fdfd0ebe78533af606de006a4 Mon Sep 17 00:00:00 2001 From: Leigh Johnson Date: Thu, 14 Apr 2016 15:07:26 -0400 Subject: [PATCH 1/2] Job details / Jobs list UX feedback #1543 #1543 --- .../src/job-detail/job-detail.partial.html | 4 ++-- awx/ui/client/src/lists/AllJobs.js | 17 ++++++++--------- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/awx/ui/client/src/job-detail/job-detail.partial.html b/awx/ui/client/src/job-detail/job-detail.partial.html index f39fe8e39e..d5aac4646b 100644 --- a/awx/ui/client/src/job-detail/job-detail.partial.html +++ b/awx/ui/client/src/job-detail/job-detail.partial.html @@ -8,7 +8,7 @@
- RESULTS + RESULTS RESULTS @@ -161,7 +161,7 @@
- DETAILS + DETAILS DETAILS diff --git a/awx/ui/client/src/lists/AllJobs.js b/awx/ui/client/src/lists/AllJobs.js index 03c309e9ab..fbeb11ce28 100644 --- a/awx/ui/client/src/lists/AllJobs.js +++ b/awx/ui/client/src/lists/AllJobs.js @@ -33,15 +33,6 @@ export default searchOptions: [ ] }, - id: { - key: true, - label: 'ID', - ngClick:"viewJobDetails(all_job)", - searchType: 'int', - columnClass: 'col-lg-1 col-md-1 col-sm-2 col-xs-2 List-staticColumnAdjacent', - awToolTip: "{{ all_job.status_tip }}", - dataPlacement: 'top' - }, name: { key: true, label: 'Name', @@ -51,6 +42,14 @@ export default awToolTip: "{{ all_job.name | sanitize }}", dataPlacement: 'top' }, + id: { + label: 'ID', + ngClick:"viewJobDetails(all_job)", + searchType: 'int', + columnClass: 'col-lg-1 col-md-1 col-sm-2 col-xs-2 List-staticColumnAdjacent', + awToolTip: "{{ all_job.status_tip }}", + dataPlacement: 'top' + }, type: { label: 'Type', ngBind: 'all_job.type_label', From 2bc822f255530c11a4dcb2aed1426d1ecf30ffaa Mon Sep 17 00:00:00 2001 From: Leigh Johnson Date: Mon, 18 Apr 2016 15:54:17 -0400 Subject: [PATCH 2/2] post-demo feedback #1542 --- awx/ui/client/src/lists/AllJobs.js | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/awx/ui/client/src/lists/AllJobs.js b/awx/ui/client/src/lists/AllJobs.js index fbeb11ce28..45a2805d0b 100644 --- a/awx/ui/client/src/lists/AllJobs.js +++ b/awx/ui/client/src/lists/AllJobs.js @@ -33,16 +33,9 @@ export default searchOptions: [ ] }, - name: { - key: true, - label: 'Name', - columnClass: 'col-lg-3 col-md-3 col-sm-4 col-xs-6', - ngClick: "viewJobDetails(all_job)", - defaultSearchField: true, - awToolTip: "{{ all_job.name | sanitize }}", - dataPlacement: 'top' - }, id: { + key: true, + desc: true, label: 'ID', ngClick:"viewJobDetails(all_job)", searchType: 'int', @@ -50,6 +43,14 @@ export default awToolTip: "{{ all_job.status_tip }}", dataPlacement: 'top' }, + name: { + label: 'Name', + columnClass: 'col-lg-3 col-md-3 col-sm-4 col-xs-6', + ngClick: "viewJobDetails(all_job)", + defaultSearchField: true, + awToolTip: "{{ all_job.name | sanitize }}", + dataPlacement: 'top' + }, type: { label: 'Type', ngBind: 'all_job.type_label',