Make Task Stop Action green (marked as clickable)

This commit is contained in:
Ozzie Isaacs 2022-04-23 20:08:26 +02:00
parent 069dc2766f
commit 6e783cd7ee
1 changed files with 1 additions and 1 deletions

View File

@ -643,7 +643,7 @@ function TaskActions (value, row) {
var cancellableStats = [0, 1, 2];
if (row.task_id && row.is_cancellable && cancellableStats.includes(row.stat)) {
return [
"<div class=\"task-cancel\" data-toggle=\"modal\" data-target=\"#cancelTaskModal\" data-task-id=\"" + row.task_id + "\" title=\"Cancel\">",
"<div class=\"danger task-cancel\" data-toggle=\"modal\" data-target=\"#cancelTaskModal\" data-task-id=\"" + row.task_id + "\" title=\"Cancel\">",
"<i class=\"glyphicon glyphicon-ban-circle\"></i>",
"</div>"
].join("");