From a65564e3bffa8d680f18dd0ea22face709e56f6a Mon Sep 17 00:00:00 2001 From: Chris Houseknecht Date: Wed, 13 Nov 2013 15:26:20 +0000 Subject: [PATCH] Moved credentials in tab order. It now follows teams and precedes projects. Based on a suggestion from jlaska. --- awx/ui/static/js/widgets/ObjectCount.js | 4 ++-- awx/ui/templates/ui/index.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/ui/static/js/widgets/ObjectCount.js b/awx/ui/static/js/widgets/ObjectCount.js index 6c86e0571e..e50cc1fc24 100644 --- a/awx/ui/static/js/widgets/ObjectCount.js +++ b/awx/ui/static/js/widgets/ObjectCount.js @@ -23,8 +23,8 @@ angular.module('ObjectCountWidget', ['RestServices', 'Utilities']) scope.removeCountReady(); } scope.removeCountReady = scope.$on('countReady', function(e, obj, count) { - var keys=[ 'organizations', 'users', 'teams', 'projects', 'inventory', 'groups', 'hosts', - 'credentials', 'job_templates', 'jobs' ]; + var keys=[ 'organizations', 'users', 'teams', 'credentials', 'projects', 'inventory', 'groups', 'hosts', + 'job_templates', 'jobs' ]; var html, itm; var cnt = 0; for (itm in counts) { diff --git a/awx/ui/templates/ui/index.html b/awx/ui/templates/ui/index.html index e3d5e6378a..c067f5b9f7 100644 --- a/awx/ui/templates/ui/index.html +++ b/awx/ui/templates/ui/index.html @@ -162,9 +162,9 @@
  • Organizations
  • Users
  • Teams
  • +
  • Credentials
  • Projects
  • Inventories
  • -
  • Credentials
  • Job Templates
  • Jobs