Skip to content

Commit

Permalink
[FIXED JENKINS-2327] Do not display 'No changes' if changelog calcula…
Browse files Browse the repository at this point in the history
…tion is still in progress
  • Loading branch information
petermarcoen committed Jul 17, 2015
1 parent 9a853b9 commit 2a75ca1
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion core/src/main/resources/hudson/model/AbstractBuild/changes.jelly
Expand Up @@ -31,7 +31,17 @@ THE SOFTWARE.
<st:include page="sidepanel.jelly" />
<l:main-panel>
<t:buildCaption>${%Changes}</t:buildCaption>
<st:include page="index.jelly" it="${it.changeSet}" />
<j:choose>
<j:when test="${it.hasChangeSetComputed()}">
<st:include page="index.jelly" it="${it.changeSet}" />
</j:when>
<j:when test="${it.building}">
${%Not yet determined}
</j:when>
<j:otherwise>
${%Failed to determine} (<a href="console">${%log}</a>)
</j:otherwise>
</j:choose>
</l:main-panel>
</l:layout>
</j:jelly>

0 comments on commit 2a75ca1

Please sign in to comment.