diff --git a/awx/ui/client/src/lists/InventoryGroups.js b/awx/ui/client/src/lists/InventoryGroups.js index 516ba5b6e5..c411f377b6 100644 --- a/awx/ui/client/src/lists/InventoryGroups.js +++ b/awx/ui/client/src/lists/InventoryGroups.js @@ -82,6 +82,16 @@ export default }, actions: { + create: { + mode: 'all', + ngClick: "createGroup()", + awToolTip: "Create a new group" + }, + properties: { + mode: 'all', + awToolTip: "Edit inventory properties", + ngClick: 'editInventoryProperties()' + }, launch: { mode: 'all', ngShow: 'inventory.can_run_ad_hoc_commands', @@ -93,16 +103,6 @@ export default // awToolTip: "{{ adhocButtonTipContents }}", // dataTipWatch: "adhocButtonTipContents" }, - create: { - mode: 'all', - ngClick: "createGroup()", - awToolTip: "Create a new group" - }, - properties: { - mode: 'all', - awToolTip: "Edit inventory properties", - ngClick: 'editInventoryProperties()' - }, refresh: { mode: 'all', awToolTip: "Refresh the page", diff --git a/awx/ui/client/src/lists/Streams.js b/awx/ui/client/src/lists/Streams.js index 3c9d8c8c48..5a793fd073 100644 --- a/awx/ui/client/src/lists/Streams.js +++ b/awx/ui/client/src/lists/Streams.js @@ -252,17 +252,17 @@ export default }, actions: { + close: { + mode: 'all', + awToolTip: "Close Activity Stream view", + ngClick: "closeStream()" + }, refresh: { mode: 'all', id: 'activity-stream-refresh-btn', 'class': 'btn-xs', awToolTip: "Refresh the page", ngClick: "refreshStream()" - }, - close: { - mode: 'all', - awToolTip: "Close Activity Stream view", - ngClick: "closeStream()" } },