diff --git a/src/scales/scale.time.js b/src/scales/scale.time.js index 0958edd98..03563df31 100644 --- a/src/scales/scale.time.js +++ b/src/scales/scale.time.js @@ -295,7 +295,7 @@ module.exports = function(Chart) { }, parseTime: function(label) { if (typeof this.options.time.parser === 'string') { - return moment(label, this.options.time.parser) + return moment(label, this.options.time.parser); } if (typeof this.options.time.parser === 'function') { return this.options.time.parser(label);