提交 f5e29cbc 编写于 作者: M Matthias Kraft 提交者: Kohsuke Kawaguchi

[FIXED JENKINS-6439] Fixed Timeline widget's default view off by one day.

Second part of the JENKINS-6439 fix.
Signed-off-by: NMatthias Kraft <Matthias.Kraft@softwareag.com>
上级 416d25cb
......@@ -60,6 +60,9 @@ Upcoming changes</a>
<!-- Record your changes in the trunk here. -->
<div id="trunk" style="display:none"><!--=TRUNK-BEGIN=-->
<ul class=image>
<li class=bug>
Default viewport of the Timeline widgets were off by one day.
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-6439">issue 6439</a>)
<li class=bug>
Label expression logic wasn't supporting a binary operator sequence like "a || b || c"
(<a href="http://issues.jenkins-ci.org/browse/JENKINS-8537">issue 8537</a>)
......
......@@ -70,7 +70,7 @@ THE SOFTWARE.
theme1.timeline_start = new Date(${it.firstBuild.timeInMillis-24*60*60*1000});
theme1.timeline_stop = new Date(${it.lastBuild.timeInMillis+24*60*60*1000});
var d = theme1.timeline_stop;
var d = new Date(${it.lastBuild.timeInMillis});
var bandInfos = [
// the bar that shows outline
Timeline.createBandInfo({
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册