|
||||||||
|
This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators. For more information on JIRA, see: http://www.atlassian.com/software/jira |
||||||||
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

i think the answer is to change the code to this.
var min = Math.floor(band.getMinDate().getTime()/interval);
var max = Math.ceil(band.getMaxDate().getTime()/interval);
var min = Math.floor(${it.firstBuild.timeInMillis-24*60*60*1000});
var max = Math.ceil(${it.lastBuild.timeInMillis+24*60*60*1000});
I think getMinDate and getMaxDate are set to a day.
Need to increase it from the day the first build to the day of the last build so it shows all builds on the widget.
Will test out my code change later.