소스 검색

HUE-6807 [search] Fix undefined variable in the facet builder

Enrico Berti 8 년 전
부모
커밋
a81e090
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      desktop/libs/dashboard/src/dashboard/facet_builder.py

+ 3 - 0
desktop/libs/dashboard/src/dashboard/facet_builder.py

@@ -145,6 +145,9 @@ def _compute_range_facet(widget_type, stat_facet, properties, start=None, end=No
         gap = '+1YEARS'
       else:
         gap = '+10YEARS'
+    else:
+      stats_min = stat_facet['min']
+      stats_max = stat_facet['max']
 
     properties.update({
       'min': stats_min,