소스 검색

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);
       }
     });