From d435783cae860e1b83f666cc45941ce280046b57 Mon Sep 17 00:00:00 2001 From: caoyanyi Date: Thu, 16 Mar 2023 14:09:01 +0800 Subject: [PATCH] * Modify font color. --- module/execution/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/model.php b/module/execution/model.php index 3c3ee37b8d..842b504e8c 100755 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -5689,7 +5689,7 @@ class executionModel extends model { $label = $execution->type == 'stage' ? 'label-warning' : 'label-info'; $link = $execution->type == 'kanban' ? helper::createLink('execution', 'kanban', "id=$execution->id") : helper::createLink('execution', 'task', "id=$execution->id"); - $execution->name = "{$this->lang->execution->typeList[$execution->type]} " . (empty($execution->children) ? html::a($link, $execution->name) : $execution->name); + $execution->name = "{$this->lang->execution->typeList[$execution->type]} " . (empty($execution->children) ? html::a($link, $execution->name, '_self', 'class="text-primary"') : $execution->name); $execution->project = $execution->projectName; $execution->parent = ($execution->parent and $execution->grade > 1) ? $execution->parent : ''; $execution->asParent = !empty($execution->children);