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