mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
Create time filter as longs when sending to ES
This commit is contained in:
parent
ee83ae5932
commit
34f8c88c28
@ -411,8 +411,8 @@ angular.module('kibana.services', [])
|
||||
{
|
||||
case 'time':
|
||||
return ejs.RangeFilter(filter.field)
|
||||
.from(filter.from)
|
||||
.to(filter.to);
|
||||
.from(filter.from.valueOf())
|
||||
.to(filter.to.valueOf());
|
||||
case 'range':
|
||||
return ejs.RangeFilter(filter.field)
|
||||
.from(filter.from)
|
||||
|
Loading…
Reference in New Issue
Block a user