From c078ae15f0471b7453da63b9b702854e83a3b7e9 Mon Sep 17 00:00:00 2001 From: Tore Lervik Date: Mon, 21 Dec 2015 22:43:20 +0100 Subject: [PATCH] Fixed a typo --- src/scales/scale.time.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scales/scale.time.js b/src/scales/scale.time.js index 971f58e02..f6293a92f 100644 --- a/src/scales/scale.time.js +++ b/src/scales/scale.time.js @@ -126,8 +126,8 @@ }, this); // We will modify these, so clone for later - this.firstTick = (this.firstTick || moment(new Date)).clone(); - this.lastTick = (this.lastTick || moment(new Date)).clone(); + this.firstTick = (this.firstTick || moment(new Date())).clone(); + this.lastTick = (this.lastTick || moment(new Date())).clone(); }, buildTicks: function(index) { -- 2.47.2