Skip to content

Commit

Permalink
check value
Browse files Browse the repository at this point in the history
  • Loading branch information
odeimaiz committed Aug 13, 2024
1 parent ed7bc8f commit f84040c
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,11 @@ qx.Class.define("osparc.viewer.NodeViewer", {
if (study.getWorkbench().isDeserialized()) {
startPolling();
} else {
study.getWorkbench().addListener("changeDeserialized", () => startPolling());
study.getWorkbench().addListener("changeDeserialized", e => {
if (e.getData()) {
startPolling()
}
});
}
})
.catch(err => console.error(err));
Expand Down

0 comments on commit f84040c

Please sign in to comment.