소스 검색

HUE-9387 [tb] Fix js exception for undefined metastoreViewodel

Johan Ahlen 5 년 전
부모
커밋
429a6a2123
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      desktop/core/src/desktop/js/apps/tableBrowser/metastoreSource.js

+ 1 - 1
desktop/core/src/desktop/js/apps/tableBrowser/metastoreSource.js

@@ -154,7 +154,7 @@ class MetastoreSource {
       } else if (refreshedEntry.isDatabase() && this.namespace()) {
         this.namespace()
           .databases()
-          .some(function (database) {
+          .some(database => {
             if (database.catalogEntry === refreshedEntry) {
               database.load(
                 () => {