Hi folks.
I just dropped comments into a couple notebooks that I imagine you’ll see soon.
Related to one bug in particular: It seems that the now built-in ‘download to SVG / PNG’ buttons in cells with charts won’t work on MS Edge (to whatever extent that bothers you). I discovered this first due to an error on the old-fashioned download buttons that you were using before implementing the options from the cell menu:
${DOM.download(await rasterize(chart), null, "Download as PNG")}
${DOM.download(await serialize(chart), null, "Download as SVG")}
The error given is:
TypeError: Object doesn't support property or method 'Symbol.iterator'
Hope this helps!