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;