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 @@