mirror of
https://github.com/ansible/awx.git
synced 2026-05-07 17:37:37 -02: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:
@@ -45,7 +45,7 @@ angular.module('QueuedJobsDefinition', [])
|
|||||||
},
|
},
|
||||||
created: {
|
created: {
|
||||||
label: 'Created On',
|
label: 'Created On',
|
||||||
link: false,
|
noLink: true,
|
||||||
searchable: false,
|
searchable: false,
|
||||||
filter: "date:'MM/dd/yy HH:mm:ss'",
|
filter: "date:'MM/dd/yy HH:mm:ss'",
|
||||||
columnClass: 'col-md-2 hidden-xs'
|
columnClass: 'col-md-2 hidden-xs'
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ angular.module('RunningJobsDefinition', [])
|
|||||||
},
|
},
|
||||||
started: {
|
started: {
|
||||||
label: 'Started On',
|
label: 'Started On',
|
||||||
link: false,
|
noLink: true,
|
||||||
searchable: false,
|
searchable: false,
|
||||||
filter: "date:'MM/dd/yy HH:mm:ss'",
|
filter: "date:'MM/dd/yy HH:mm:ss'",
|
||||||
columnClass: "col-md-2 hidden-xs"
|
columnClass: "col-md-2 hidden-xs"
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ angular.module('ScheduledJobsDefinition', [])
|
|||||||
},
|
},
|
||||||
next_run: {
|
next_run: {
|
||||||
label: 'Next Run',
|
label: 'Next Run',
|
||||||
link: false,
|
noLink: true,
|
||||||
searchable: false,
|
searchable: false,
|
||||||
columnClass: "col-md-2 hidden-xs",
|
columnClass: "col-md-2 hidden-xs",
|
||||||
filter: "date:'MM/dd/yy HH:mm:ss'",
|
filter: "date:'MM/dd/yy HH:mm:ss'",
|
||||||
@@ -42,7 +42,7 @@ angular.module('ScheduledJobsDefinition', [])
|
|||||||
},
|
},
|
||||||
type: {
|
type: {
|
||||||
label: 'Type',
|
label: 'Type',
|
||||||
link: false,
|
noLink: true,
|
||||||
columnClass: "col-md-2 hidden-sm hidden-xs",
|
columnClass: "col-md-2 hidden-sm hidden-xs",
|
||||||
sourceModel: 'unified_job_template',
|
sourceModel: 'unified_job_template',
|
||||||
sourceField: 'job_type',
|
sourceField: 'job_type',
|
||||||
|
|||||||
@@ -453,7 +453,7 @@ angular.module('GeneratorHelpers', [])
|
|||||||
if (field.linkTo) {
|
if (field.linkTo) {
|
||||||
html += "<a href=\"" + field.linkTo + "\" ";
|
html += "<a href=\"" + field.linkTo + "\" ";
|
||||||
} else if (field.ngClick) {
|
} else if (field.ngClick) {
|
||||||
html += "<a hef=\"\" " + Attr(field, 'ngClick') + " ";
|
html += "<a href=\"\" " + Attr(field, 'ngClick') + " ";
|
||||||
} else if (field.ngHref) {
|
} else if (field.ngHref) {
|
||||||
html += "<a ng-href=\"" + field.ngHref + "\" ";
|
html += "<a ng-href=\"" + field.ngHref + "\" ";
|
||||||
} else if (field.link || (field.key && (field.link === undefined || field.link))) {
|
} else if (field.link || (field.key && (field.link === undefined || field.link))) {
|
||||||
|
|||||||
Reference in New Issue
Block a user