Browse Source

HUE-3294 [metadata] Avoid error when search returns the HDFS root directory

Romain Rigaux 9 năm trước cách đây
mục cha
commit
c9034b1b07
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      desktop/libs/metadata/src/metadata/navigator_api.py

+ 1 - 1
desktop/libs/metadata/src/metadata/navigator_api.py

@@ -244,7 +244,7 @@ def _augment_highlighting(query_s, records):
   for record in records:
     name = record.get('originalName', '')
     record['hue_description'] = ''
-    record['hue_name'] = (record.get('parentPath', '').replace('/', '.') + '.').lstrip('.')
+    record['hue_name'] = (record.get('parentPath', '').replace('/', '.') + '.').lstrip('.') if record.get('parentPath') else ''
 
     for term in ts:
       name = _highlight(term, name)