Skip to content

Commit

Permalink
[FIXED JENKINS-10072] Add option for disabling the count in the dropd…
Browse files Browse the repository at this point in the history
…own tab name
  • Loading branch information
jieryn committed Jun 22, 2011
1 parent fffc5d2 commit 8d00537
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -45,7 +45,9 @@ THE SOFTWARE.
<span style="font-weight: bold;">${%ViewsTitle}</span>
<select id="selectView" onChange="javascript:selectViewOnChange();">
<j:forEach var="view" items="${views}">
<option id="${view.viewName}" value="${view.viewUrl}">${view.viewName} (${view.getItems().size()})</option>
<option id="${view.viewName}" value="${view.viewUrl}">${view.viewName}
<j:if test="${it.descriptor.showJobCount}">(${view.getItems().size()})</j:if>
</option>
</j:forEach>
<j:if test="${currentView.hasPermission(currentView.CREATE)}">
<option value="">----------------</option>
Expand Down

0 comments on commit 8d00537

Please sign in to comment.