Skip to content

Commit

Permalink
[FIXED JENKINS-20500] Pass ${it} as an alias for ${view} to t:queue a…
Browse files Browse the repository at this point in the history
…nd t:executors, correcting regression introduced in 8e6a3f7.
  • Loading branch information
jglick committed Mar 26, 2014
1 parent b8f8fb1 commit 20ea8d1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions changelog.html
Expand Up @@ -55,6 +55,9 @@
<!-- Record your changes in the trunk here. -->
<div id="trunk" style="display:none"><!--=TRUNK-BEGIN=-->
<ul class=image>
<li class=bug>
Incorrect filtering of build queue and executors widgets after 1.514.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-20500">issue 20500</a>)
<li class=bug>
Fixed a slow down in resource loading caused by fix to JENKINS-18677.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-21579">issue 21579</a>)
Expand Down
Expand Up @@ -2,4 +2,4 @@ package jenkins.widgets.BuildQueueWidget;

def t = namespace(lib.JenkinsTagLib.class)

t.queue(items:view.approximateQueueItemsQuickly)
t.queue(items:view.approximateQueueItemsQuickly, it:view)
Expand Up @@ -2,4 +2,4 @@ package jenkins.widgets.ExecutorsWidget

def t = namespace(lib.JenkinsTagLib.class)

t.executors(computers:view.computers)
t.executors(computers:view.computers, it:view)

0 comments on commit 20ea8d1

Please sign in to comment.