Skip to content
This repository has been archived by the owner on Dec 11, 2022. It is now read-only.

Commit

Permalink
Buile for #196
Browse files Browse the repository at this point in the history
  • Loading branch information
avivl committed Feb 6, 2020
1 parent a7909ea commit ca18a1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dist/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -58654,8 +58654,8 @@ function () {
var res = alias ? q.match(/(\$__timeGroupAlias\(([\w._]+,)).*?(?=\))/g) : q.match(/(\$__timeGroup\(([\w_.]+,)).*?(?=\))/g);

if (res) {
interval[0] = res[0].split(",")[1];
interval[1] = res[0].split(",")[2];
interval[0] = res[0].split(",")[1] ? res[0].split(",")[1].trim() : res[0].split(",")[1];
interval[1] = res[0].split(",")[2] ? res[0].split(",")[2].trim() : res[0].split(",")[2];
}

return interval;
Expand Down
2 changes: 1 addition & 1 deletion dist/module.js.map

Large diffs are not rendered by default.

0 comments on commit ca18a1f

Please sign in to comment.