From ccf11069cba1a0146c743b770cdd4bc4e368d924 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Tue, 22 Mar 2022 15:20:47 +0800 Subject: [PATCH] * Fix bug #20975. --- module/execution/css/taskkanban.css | 2 ++ module/execution/js/taskkanban.js | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/module/execution/css/taskkanban.css b/module/execution/css/taskkanban.css index 452c62d145..7bffcf46a0 100644 --- a/module/execution/css/taskkanban.css +++ b/module/execution/css/taskkanban.css @@ -57,3 +57,5 @@ .c-type {width: 150px !important; overflow: unset;} .c-group {width: 190px !important; overflow: unset;} .c-type {margin-left: 0px !important;} + +.createButton {margin-right: 5px;} diff --git a/module/execution/js/taskkanban.js b/module/execution/js/taskkanban.js index 69d077d05e..ee47b3ebe9 100644 --- a/module/execution/js/taskkanban.js +++ b/module/execution/js/taskkanban.js @@ -300,7 +300,7 @@ function renderHeaderCol($col, col, $header, kanban) if(col.asParent) $col = $col.children('.kanban-header-col'); if($col.children('.actions').context != undefined) return; - var $actions = $('
'); + var $actions = $('
'); var printStoryButton = printTaskButton = printBugButton = false; if(priv.canCreateStory || priv.canBatchCreateStory || priv.canLinkStory || priv.canLinkStoryByPlan) printStoryButton = true; if(priv.canCreateTask || priv.canBatchCreateTask) printTaskButton = true;