mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 01:57:35 -03:30
Fixed broken links where ngHref is used in list objects.
This commit is contained in:
parent
b44b82dd52
commit
177080e43d
@ -72,14 +72,14 @@ angular.module('InventoriesListDefinition', [])
|
||||
fieldActions: {
|
||||
status: {
|
||||
//label: 'Status',
|
||||
ngHref: "inventory.status_link",
|
||||
ngHref: "{{ inventory.status_link }}",
|
||||
iconClass: "{{ 'fa fa-cloud icon-cloud-' + inventory.status_class }}",
|
||||
awToolTip: "{{ inventory.status_tip }}",
|
||||
dataPlacement: "top"
|
||||
},
|
||||
failed_hosts: {
|
||||
//label: 'Failures',
|
||||
ngHref: "inventory.failed_hosts_link",
|
||||
ngHref: "{{ inventory.failed_hosts_link }}",
|
||||
iconClass: "{{ 'fa icon-failures-' + inventory.failed_hosts_class }}",
|
||||
awToolTip: "{{ inventory.failed_hosts_tip }}",
|
||||
dataPlacement: "top"
|
||||
|
||||
@ -53,7 +53,7 @@ angular.module('JobHostDefinition', [])
|
||||
sourceModel: 'host',
|
||||
sourceField: 'name',
|
||||
ngBind: 'jobhost.host_name',
|
||||
ngHref: "jobhost.hostLinkTo"
|
||||
ngHref: "{{ jobhost.hostLinkTo }}"
|
||||
},
|
||||
status: {
|
||||
label: 'Status',
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user