소스 검색

Fix for histogram without time filter

Rashid Khan 12 년 전
부모
커밋
a118cf42ae
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      panels/histogram/module.js

+ 2 - 2
panels/histogram/module.js

@@ -327,8 +327,8 @@ angular.module('kibana.histogram', [])
                 timezone: scope.panel.timezone,
                 show: scope.panel['x-axis'],
                 mode: "time",
-                min: scope.range.from.getTime(),
-                max: scope.range.to.getTime(),
+                min: _.isUndefined(scope.range.from) ? null : scope.range.from.getTime(),
+                max: _.isUndefined(scope.range.to) ? null : scope.range.to.getTime(),
                 timeformat: time_format(scope.panel.interval),
                 label: "Datetime",
               },