瀏覽代碼

[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 => {