Преглед изворни кода

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