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
If you call the display function twice, the following error occurs: Failed to execute 'querySelectorAll' on 'Element': '#celestial*' is not a valid selector.
The problem started after this commit: 9bae16e. It's looks like the selector is invalid at this line:
if (container) container.selectAll(parentElement + "*").remove();
(if you do a basic test with document.querySelectAll('#celestial*'), the same problem will occur.)
I did a temporary fix in my code using this snippet:
The text was updated successfully, but these errors were encountered:
If you call the
display
function twice, the following error occurs:Failed to execute 'querySelectorAll' on 'Element': '#celestial*' is not a valid selector.
The problem started after this commit: 9bae16e. It's looks like the selector is invalid at this line:
(if you do a basic test with
document.querySelectAll('#celestial*')
, the same problem will occur.)I did a temporary fix in my code using this snippet:
The text was updated successfully, but these errors were encountered: