+ Add title color of the task view page.

This commit is contained in:
tianshujie
2023-11-15 17:18:26 +08:00
parent d26e3e628e
commit 72ca5915bd
+2 -2
View File
@@ -39,8 +39,8 @@ detailHeader
span(setClass('label gray-pale rounded-xl'), $lang->task->childrenAB),
a(set::href(createLink('task', 'view', "taskID={$task->parent}")), $task->parentName),
span('/'),
$task->name
) : $task->name
span(setStyle(array('color' => $task->color)), $task->name)
) : span(setStyle(array('color' => $task->color)), $task->name)
)
),
!isAjaxRequest('modal') && common::hasPriv('task', 'create') ? to::suffix(btn(set::icon('plus'), set::url(createLink('task', 'create', "executionID={$task->execution}")), set::type('primary'), $lang->task->create)) : null