Skip to content

Commit 1642a85

Browse files
committed
Fix issue where widgets disappeared after execution on ipywidgets>=8.0.0rc0
1 parent cf02d7e commit 1642a85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/robotkernel/executors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def update(*args):
153153

154154
ui = ipywidgets.widgets.Box(widgets, layout=layout)
155155
# noinspection PyTypeChecker
156-
display(ipywidgets.widgets.VBox([ui, out]), display_id=display_id)
156+
display(ipywidgets.widgets.VBox([ui, out]), display_id=f"{display_id}.widgets")
157157

158158

159159
def inject_ipywidgets(

0 commit comments

Comments
 (0)