mirror of
https://github.com/ansible/awx.git
synced 2026-01-14 03:10:42 -03:30
added refresh button to inventory group/host page for when user is not in live mode (websockets disabled)
This commit is contained in:
parent
f0b1034d29
commit
ccc6e16d2e
@ -78,6 +78,12 @@ angular.module('InventoryGroupsDefinition', [])
|
||||
awToolTip: "Edit inventory properties",
|
||||
ngClick: 'editInventoryProperties()'
|
||||
},
|
||||
refresh: {
|
||||
mode: 'all',
|
||||
awToolTip: "Refresh the page",
|
||||
ngClick: "refreshGroups()",
|
||||
ngShow: "socketStatus == 'error'"
|
||||
},
|
||||
stream: {
|
||||
ngClick: "showGroupActivity()",
|
||||
awToolTip: "View Activity Stream",
|
||||
|
||||
@ -98,6 +98,12 @@ angular.module('InventoryHostsDefinition', [])
|
||||
ngHide: '!selected_group_id', //disable when 'All Hosts' selected
|
||||
awToolTip: "Create a new host"
|
||||
},
|
||||
refresh: {
|
||||
mode: 'all',
|
||||
awToolTip: "Refresh the page",
|
||||
ngClick: "refreshGroups()",
|
||||
ngShow: "socketStatus == 'error'"
|
||||
},
|
||||
stream: {
|
||||
ngClick: "showHostActivity()",
|
||||
awToolTip: "View Activity Stream",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user