Jobs and Scheduled Jobs dynamic tooltip fix

Both tooltips would break if sorting/filtering the jobs list and the scheduled jobs list
This commit is contained in:
Jared Tabor 2016-07-12 13:17:58 -07:00
parent 8a5faf564d
commit 9389d9014b
2 changed files with 2 additions and 0 deletions

View File

@ -49,6 +49,7 @@ export default
ngClick: "viewJobDetails(all_job)",
defaultSearchField: true,
awToolTip: "{{ all_job.name | sanitize }}",
dataTipWatch: 'all_job.name',
dataPlacement: 'top'
},
type: {

View File

@ -35,6 +35,7 @@ export default
sourceField: 'name',
ngClick: "editSchedule(schedule)",
awToolTip: "{{ schedule.nameTip | sanitize}}",
dataTipWatch: 'schedule.nameTip',
dataPlacement: "top",
defaultSearchField: true
},