This commit is contained in:
Mike Goatly 2018-06-06 22:36:00 +01:00
Родитель fcd5826b02
Коммит 8834c9df39
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -97,7 +97,7 @@ export function timeline(
let result = {};
result[prefix + 'graphData'] = timelineValues;
result[prefix + 'timeFormat'] = (timespan.indexOf("hour") > 0 ? 'hour' : 'date');
result[prefix + 'timeFormat'] = ((timespan || "").indexOf("hour") > 0 ? 'hour' : 'date');
result[prefix + 'lines'] = lines;
result[prefix + 'pieData'] = usage;

Просмотреть файл

@ -15,7 +15,7 @@ interface IQueryTimespan {
granularity: string;
}
const timespanRegex = /^(\d+) (hour|day|week|month)s?$/g;
const timespanRegex = /^(\d+) (hour|day|week|month)s?$/;
function parseTimespan(timespanText: string) : IQueryTimespan {
var match = timespanRegex.exec(timespanText);
if (!match) {