Merge branch 'tianshujie_fixbug' into 'master'

Tianshujie fixbug

See merge request easycorp/zentaopms!6791
This commit is contained in:
王怡栋
2023-01-29 07:28:22 +00:00
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ if($('#openedBuild').length || $('#resolvedBuild').length || $('[name^=openedBui
{
$.get(createLink('bug', 'ajaxGetReleasedBuilds', 'productID=' + productID), function(data){releasedBuilds = data;}, 'json');
$('#openedBuild, #resolvedBuild, [name^=openedBuilds]').picker({optionRender: markReleasedBuilds});
$('#openedBuild, #resolvedBuild, form [name^=openedBuilds]').picker({optionRender: markReleasedBuilds});
}
/**
+1
View File
@@ -75,3 +75,4 @@
#kanbans .kanban-affixed .kanban-header-col .title.action-dbc .storyColumn .text {color: #fff;}
#kanbans .kanban-affixed .kanban-header-col .title.action-dbc .storyColumn .caret {display: none;}
.kanban-card a[disabled] {color: #313c52;}
.kanban-col .icon-arrow-up + .tooltip {white-space: nowrap;}
+1 -1
View File
@@ -357,7 +357,7 @@ function renderColumnCount($count, count, col)
}
var text = count + '/' + (col.limit < 0 ? '<i class="icon icon-infinite"></i>' : col.limit);
$count.html(text + '<i class="icon icon-arrow-up"></i>');
$count.html(text + '<i class="icon icon-arrow-up" data-toggle="tooltip" data-original-title="' + kanbanLang.limitExceeded + '"></i>');
if(col.limit != -1 && col.limit < count)
{