ipywidgets icon indicating copy to clipboard operation
ipywidgets copied to clipboard

unexpected javascript error in VBox linked to tooltip

Open jgunstone opened this issue 2 years ago • 2 comments
trafficstars

ipywidgets version == 8.1.1

import ipywidgets as w

di = {
    "title": "title",
    "description": "Description ...",
    "tooltip": "tooltip ...",
}
w.VBox(**di)  # error

image


import ipywidgets as w

di = {
    "title": "title",
    "description": "Description ...",
    #"tooltip": "tooltip ...",
}
w.VBox(**di)  # instantiates normally

image

jgunstone avatar Nov 07 '23 09:11 jgunstone

just double checked this in the newest version (8.1.5) and the error still persists

jgunstone avatar Sep 10 '24 10:09 jgunstone

The PR here #3921 resolves the problem.

image

fleming79 avatar Sep 11 '24 08:09 fleming79