Skip to content

Commit

Permalink
Remove render on process change
Browse files Browse the repository at this point in the history
  • Loading branch information
edan-bainglass committed Feb 20, 2025
1 parent 78fa08c commit 547ca2b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/aiidalab_qe/common/process/tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,8 @@ def render(self):
self.children = [ipw.HTML("Process node not yet available")]

def _on_process_change(self, _):
if not self.rendered:
self._render()
self._update()
if self.rendered:
self._update()

def _on_monitor_counter_change(self, _):
if self.rendered:
Expand Down

0 comments on commit 547ca2b

Please sign in to comment.