From 4ebe6b44924a87aeeaa76b34c5f03607955e8224 Mon Sep 17 00:00:00 2001 From: mhirtie Date: Thu, 5 Mar 2015 17:45:39 +0200 Subject: [PATCH] Add semicolon to the end of line. --- frontend/app/ui_components/date/date-range-directive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/ui_components/date/date-range-directive.js b/frontend/app/ui_components/date/date-range-directive.js index acb7ea778d..3bf0c7c6fc 100644 --- a/frontend/app/ui_components/date/date-range-directive.js +++ b/frontend/app/ui_components/date/date-range-directive.js @@ -53,7 +53,7 @@ module.exports = function(TimezoneService, $timeout) { scope.change = function(scope) { var range = scope.daterange.split(/\s+?-\s+?/i), isMatching = range.every(function(date) { - return datePattern.test(date) + return datePattern.test(date); }); if(isMatching) {