You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are some new widgets (e.g. FloatLogSlider) that aren't included in the javascript bundled with the last release of ipywidgets_server. Looks like a new release (and maybe bumping the minimum npm version of @jupyter-widgets/controls) will do the trick.
This code snippet will demonstrate the problem; when you try connecting to port 8866 you just get a blank page, and errors in the console about not being able to find FloatLogSliderModel:
# Add a slider to allow adjusting MS distance brightnessfromipywidgetsimportFloatLogSliderinitial_dist=10dist_slider=FloatLogSlider(base=10, min=1, max=4, step=0.01,
description='Distance (pc)', value=3,
readout_format='d')
There are some new widgets (e.g.
FloatLogSlider
) that aren't included in the javascript bundled with the last release ofipywidgets_server
. Looks like a new release (and maybe bumping the minimum npm version of@jupyter-widgets/controls
) will do the trick.This code snippet will demonstrate the problem; when you try connecting to port 8866 you just get a blank page, and errors in the console about not being able to find
FloatLogSliderModel
:Pinging @JuanCab who found the issue.
The text was updated successfully, but these errors were encountered: