From c7fb090e53dbde80db21de3d477ac54a5e91cf04 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Thu, 17 Feb 2022 15:21:19 +0800 Subject: [PATCH] * Code for task #49371. --- extension/lite/execution/ext/control/kanban.php | 2 +- extension/lite/execution/ext/view/kanban.lite.html.hook.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/extension/lite/execution/ext/control/kanban.php b/extension/lite/execution/ext/control/kanban.php index d56d524c6c..69571b03f5 100644 --- a/extension/lite/execution/ext/control/kanban.php +++ b/extension/lite/execution/ext/control/kanban.php @@ -21,7 +21,7 @@ class myExecution extends execution foreach($this->lang->execution->kanbanGroup as $groupKey => $groupName) { $attr = $groupBy == $groupKey ? '' : ''; - $TRActions .= '
  • ' . html::a(helper::createLink('execution', 'kanban', "execution=$execution->id&browseType=task&orderBy=$orderBy&groupBy=$groupKey"), $groupName) . $attr .'
  • '; + $TRActions .= '
  • ' . html::a(helper::createLink('execution', 'kanban', "execution=$execution->id&browseType=task&orderBy=$orderBy&groupBy=$groupKey"), $groupName . $attr) . '
  • '; } $TRActions .= ""; $TRActions .= html::a('javascript:fullScreen()', " " . $this->lang->kanban->fullScreen, '', "class='btn btn-link'"); diff --git a/extension/lite/execution/ext/view/kanban.lite.html.hook.php b/extension/lite/execution/ext/view/kanban.lite.html.hook.php index 9f92ca776a..8d5ff1682c 100644 --- a/extension/lite/execution/ext/view/kanban.lite.html.hook.php +++ b/extension/lite/execution/ext/view/kanban.lite.html.hook.php @@ -1,9 +1,9 @@