소스 검색

[assist] Prevent automatic opening of unknown tables in the right assist

This takes care of an issue where the right assist is causing autocomplete API calls for tables that don't exist.
Johan Åhlén 3 년 전
부모
커밋
d0d384550b
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      desktop/core/src/desktop/js/ko/components/assist/ko.assistEditorContextPanel.js

+ 4 - 1
desktop/core/src/desktop/js/ko/components/assist/ko.assistEditorContextPanel.js

@@ -291,7 +291,10 @@ class AssistEditorContextPanel {
       }
       window.clearTimeout(loadEntriesTimeout);
       if (this.activeTables().length === 1) {
-        this.activeTables()[0].open(true);
+        const singleTable = this.activeTables()[0];
+        if (!singleTable.hasErrors()) {
+          singleTable.open(true);
+        }
       } else {
         loadEntriesTimeout = window.setTimeout(() => {
           this.activeTables().every(table => {