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
Blocked aria-hidden on an element because its descendant retained focus. The focus must not be hidden from assistive technology users. Avoid using aria-hidden on a focused element or its ancestor. Consider using the inert attribute instead, which will also prevent focus. For more details, see the aria-hidden section of the WAI-ARIA specification at https://w3c.github.io/aria/#aria-hidden.
Element with focus: button
Ancestor with aria-hidden:
This error comes from the geoview-renderer, look for // TODO: Performance #2688
INFO
The aria-blocking error in the web console is likely occurring because the processStyle function is performing synchronous operations that could block the main thread. Looking at the open file, we can see this is happening in the style processing for geometry rendering.
We have error in the console
This error comes from the geoview-renderer, look for // TODO: Performance #2688
INFO
The aria-blocking error in the web console is likely occurring because the processStyle function is performing synchronous operations that could block the main thread. Looking at the open file, we can see this is happening in the style processing for geometry rendering.
Here's how to fix it: [1]
Key changes:
The text was updated successfully, but these errors were encountered: