mirror of
https://github.com/ansible/awx.git
synced 2026-01-17 20:51:21 -03:30
Fixed cursor hover on list columns. Where ng-click appeared the href tag was missing, which caused the cursor to not change.
This commit is contained in:
parent
d190aa3001
commit
0d18e85ba3
@ -45,7 +45,7 @@ angular.module('QueuedJobsDefinition', [])
|
||||
},
|
||||
created: {
|
||||
label: 'Created On',
|
||||
link: false,
|
||||
noLink: true,
|
||||
searchable: false,
|
||||
filter: "date:'MM/dd/yy HH:mm:ss'",
|
||||
columnClass: 'col-md-2 hidden-xs'
|
||||
|
||||
@ -45,7 +45,7 @@ angular.module('RunningJobsDefinition', [])
|
||||
},
|
||||
started: {
|
||||
label: 'Started On',
|
||||
link: false,
|
||||
noLink: true,
|
||||
searchable: false,
|
||||
filter: "date:'MM/dd/yy HH:mm:ss'",
|
||||
columnClass: "col-md-2 hidden-xs"
|
||||
|
||||
@ -33,7 +33,7 @@ angular.module('ScheduledJobsDefinition', [])
|
||||
},
|
||||
next_run: {
|
||||
label: 'Next Run',
|
||||
link: false,
|
||||
noLink: true,
|
||||
searchable: false,
|
||||
columnClass: "col-md-2 hidden-xs",
|
||||
filter: "date:'MM/dd/yy HH:mm:ss'",
|
||||
@ -42,7 +42,7 @@ angular.module('ScheduledJobsDefinition', [])
|
||||
},
|
||||
type: {
|
||||
label: 'Type',
|
||||
link: false,
|
||||
noLink: true,
|
||||
columnClass: "col-md-2 hidden-sm hidden-xs",
|
||||
sourceModel: 'unified_job_template',
|
||||
sourceField: 'job_type',
|
||||
|
||||
@ -453,7 +453,7 @@ angular.module('GeneratorHelpers', [])
|
||||
if (field.linkTo) {
|
||||
html += "<a href=\"" + field.linkTo + "\" ";
|
||||
} else if (field.ngClick) {
|
||||
html += "<a hef=\"\" " + Attr(field, 'ngClick') + " ";
|
||||
html += "<a href=\"\" " + Attr(field, 'ngClick') + " ";
|
||||
} else if (field.ngHref) {
|
||||
html += "<a ng-href=\"" + field.ngHref + "\" ";
|
||||
} else if (field.link || (field.key && (field.link === undefined || field.link))) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user