Error in js console: Blocked aria-hidden on an element because its descendant retained focus.
- Framework7 version: 8.3.4
- Platform and Target: Edge and Droidscript
- Live Link or CodeSandbox: https://codesandbox.io/p/sandbox/nifty-darkness-3p7tvg
Describe the bug
When in routes i have page with componentUrl and that page loads-up- i receive JS error in console about "Blocked aria-hidden on an element" I do observe the same behaviour in Edge and Droidscript
To Reproduce
- Go to https://codesandbox.io/p/sandbox/nifty-darkness-3p7tvg
- Open browser developer tools, open console
- In preview window click on link "List load as expected" right under the form
- See error in console window about aria-hidden
Expected behavior
Page loaded and rendered as expected, No error is shown
Actual Behavior
In browser page is loaded but in console error is shown. In Droidscript- alert windows with the same message and after clicking OK- application halts.
Screenshots
Additional context
Added zip'ed Droidscript source as attachment for testing on Droidscript. List.zip
More on this: versions 8.3.0 and 8.3.1 works ok in this case Version 8.3.2 and later versions give "Blocked aria-hidden on an element" error
same issue here....
OK - it worked for me to add an extra update() on pageInit
$on('pageInit', () => {
$update();
});