Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
[FIXED JENKINS-12186] Fixed visibility of open tasks column.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed Mar 2, 2012
1 parent 851c7cc commit 98de615
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -23,7 +23,7 @@
<j:if test="${it.isPmdActivated()}">
<td width="10%" class="pane-header">PMD</td>
</j:if>
<j:if test="${it.isTasksActivated()}">
<j:if test="${it.isOpenTasksActivated()}">
<td width="10%" class="pane-header">${%Open Tasks}</td>
</j:if>
<j:if test="${it.isWarningsActivated()}">
Expand All @@ -43,7 +43,7 @@
<j:if test="${it.isPmdActivated()}">
<td width="5%" class="pane-header"><img width="24" height="24" src="${rootURL}/plugin/pmd/icons/pmd-24x24.gif" alt="PMD" title="PMD" /></td>
</j:if>
<j:if test="${it.isTasksActivated()}">
<j:if test="${it.isOpenTasksActivated()}">
<td width="5%" class="pane-header"><img width="24" height="24" src="${rootURL}/plugin/tasks/icons/tasks-24x24.png" alt="${%Open Tasks}" title="${%Open Tasks}" /></td>
</j:if>
<j:if test="${it.isWarningsActivated()}">
Expand Down Expand Up @@ -80,7 +80,7 @@
${it.getPmd(job)}
</td>
</j:if>
<j:if test="${it.isTasksActivated()}">
<j:if test="${it.isOpenTasksActivated()}">
<td class="pane">
${it.getTasks(job)}
</td>
Expand Down Expand Up @@ -121,7 +121,7 @@
${it.getPmd(jobs)}
</td>
</j:if>
<j:if test="${it.isTasksActivated()}">
<j:if test="${it.isOpenTasksActivated()}">
<td class="pane-header">
${it.getTasks(jobs)}
</td>
Expand Down

0 comments on commit 98de615

Please sign in to comment.