소스 검색

HUE-8667 [autocomplete] Fix issue where order by and group by suggestions aren't displayed properly

Johan Ahlen 7 년 전
부모
커밋
07a0919
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      desktop/core/src/desktop/static/desktop/js/sqlAutocompleter3.js

+ 1 - 1
desktop/core/src/desktop/static/desktop/js/sqlAutocompleter3.js

@@ -1252,7 +1252,7 @@ var AutocompleteResults = (function () {
               category: navOptAttribute === 'groupByColumn' ? CATEGORIES.POPULAR_GROUP_BY : CATEGORIES.POPULAR_ORDER_BY,
               weightAdjust:  Math.round(100 * entry.navOptPopularity[navOptAttribute].columnCount / totalColumnCount),
               popular: ko.observable(true),
-              hasCatalogEntry: true,
+              hasCatalogEntry: false,
               details: entry
             });
           });