瀏覽代碼

HUE-9000 [editor] Fix issue with switching to result tab after execute in editor v2

Johan Ahlen 6 年之前
父節點
當前提交
5f520e4634
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      desktop/core/src/desktop/js/apps/notebook2/snippet.js

+ 1 - 1
desktop/core/src/desktop/js/apps/notebook2/snippet.js

@@ -1036,7 +1036,7 @@ export default class Snippet {
 
     huePubSub.subscribe(EXECUTABLE_UPDATED_EVENT, executable => {
       if (this.activeExecutable() === executable) {
-        this.updateFromExecutable();
+        this.updateFromExecutable(executable);
       }
     });