diff --git a/main/webapp/modules/core/scripts/facets/timerange-facet.js b/main/webapp/modules/core/scripts/facets/timerange-facet.js index cac08f73c..cc8aa1e25 100644 --- a/main/webapp/modules/core/scripts/facets/timerange-facet.js +++ b/main/webapp/modules/core/scripts/facets/timerange-facet.js @@ -290,7 +290,7 @@ TimeRangeFacet.prototype._setRangeIndicators = function() { } else { var timeOfDayformat = "HH:mm:ss"; var dayOfYearFormat = "yyyy-MM-dd"; - this._elmts.statusDiv.html("" + fromDate.toString(dayOfYearFormat) + " " + fromDate.toString(timeOfDayformat) + " — " + toDate.toString(timeOfDayformat) + " " + toDate.toString(dayOfYearFormat) + "" ); + this._elmts.statusDiv.html("" + fromDate.toString(dayOfYearFormat) + " " + fromDate.toString(timeOfDayformat) + " — " + "" + toDate.toString(dayOfYearFormat) + " " + toDate.toString(timeOfDayformat) ); } };