Skip to content

Commit 6104244

Browse files
authored
Merge pull request #102 from robots-from-jupyter/ipywidgets
Fix issue where widgets disappeared after execution on ipywidgets>=8.…
2 parents 3911e99 + 1642a85 commit 6104244

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)