diff --git a/module/execution/css/testcase.css b/module/execution/css/testcase.css index 485a750a3d..4037191ccc 100644 --- a/module/execution/css/testcase.css +++ b/module/execution/css/testcase.css @@ -2,3 +2,4 @@ .c-result {width: 80px;} #pageNav #dropMenu .col-left {padding-bottom: 0px;} #currentBranch + #dropMenu .col-left {padding-bottom: 30px;} +.status-blocked {left: -5px;} diff --git a/module/execution/js/kanban.js b/module/execution/js/kanban.js index bbf7a5fb39..b93d8eb53d 100644 --- a/module/execution/js/kanban.js +++ b/module/execution/js/kanban.js @@ -576,7 +576,7 @@ function renderStoryItem(item, $item, col) if(scaleSize <= 2) { var idHtml = scaleSize <= 1 ? ('#' + item.id + '') : ''; - var priHtml = '' + item.pri + ''; + var priHtml = '' + item.pri + ''; var hoursHtml = (item.estimate && scaleSize <= 1) ? ('' + item.estimate + hourUnit + '') : ''; var avatarHtml = renderUserAvatar(item.assignedTo, 'story', item.id, '', col.type); var $infos = $item.find('.infos'); @@ -642,7 +642,7 @@ function renderBugItem(item, $item, col) { var idHtml = scaleSize <= 1 ? ('#' + item.id + '') : ''; var severityHtml = scaleSize <= 1 ? ('') : ''; - var priHtml = '' + item.pri + ''; + var priHtml = '' + item.pri + ''; var avatarHtml = renderUserAvatar(item.assignedTo, 'bug', item.id, '', col.type); var $infos = $item.find('.infos'); @@ -707,7 +707,7 @@ function renderTaskItem(item, $item, col) if(scaleSize <= 2) { - var priHtml = '' + item.pri + ''; + var priHtml = '' + item.pri + ''; var hoursHtml = scaleSize <= 1 && item.status != 'wait' ? ('' + taskLang.leftAB + ' ' + item.left + 'h') : ('' + taskLang.estimateAB + ' ' + item.estimate + 'h'); var avatarHtml = renderUserAvatar(item.assignedTo, 'task', item.id, '', col.type); diff --git a/module/execution/js/taskkanban.js b/module/execution/js/taskkanban.js index a98dca7d67..0c02f13b2c 100644 --- a/module/execution/js/taskkanban.js +++ b/module/execution/js/taskkanban.js @@ -156,7 +156,7 @@ function renderStoryItem(item, $item, col) if(scaleSize <= 2) { var idHtml = scaleSize <= 1 ? ('#' + item.id + '') : ''; - var priHtml = '' + item.pri + ''; + var priHtml = '' + item.pri + ''; var hoursHtml = (item.estimate && scaleSize <= 1) ? ('' + item.estimate + hourUnit +'') : ''; var avatarHtml = renderUserAvatar(item.assignedTo, 'story', item.id, '', col.type); var $infos = $item.find('.infos'); @@ -221,7 +221,7 @@ function renderBugItem(item, $item, col) { var idHtml = scaleSize <= 1 ? ('#' + item.id + '') : ''; var severityHtml = scaleSize <= 1 ? ('') : ''; - var priHtml = '' + item.pri + ''; + var priHtml = '' + item.pri + ''; var avatarHtml = renderUserAvatar(item.assignedTo, 'bug', item.id, '', col.type); var $infos = $item.find('.infos'); @@ -284,7 +284,7 @@ function renderTaskItem(item, $item, col) if(scaleSize <= 2) { - var priHtml = '' + item.pri + ''; + var priHtml = '' + item.pri + ''; var hoursHtml = scaleSize <= 1 && item.status != 'wait' ? ('' + taskLang.leftAB + ' ' + item.left + 'h') : ('' + taskLang.estimateAB + ' ' + item.estimate + 'h'); var avatarHtml = renderUserAvatar(item.assignedTo, 'task', item.id, '', col.type); diff --git a/module/execution/view/importbug.html.php b/module/execution/view/importbug.html.php index 04d1fcacdd..338e38a854 100755 --- a/module/execution/view/importbug.html.php +++ b/module/execution/view/importbug.html.php @@ -56,7 +56,7 @@ id) . html::hidden("id[$bug->id]", $bug->id);?> -