I’m tracking and displaying the status of ongoing actions in my component on a fine-grained level. The app experience is worsened by the loading indicator flashing while long operations are ongoing. How can I disable it?
Use this utility function
use:
loadingIndicator(0);
to hide it … or some number between 1…100 to show progress as you want.
2 Likes
Thanks for the workaround. I’ll create a GH issue for an official way of configuring it.
Just noting that this utility function adds another feature to the progress indicator, as you see it updates aria-tags for A11y. So when using this screen reader will announce the progress.
1 Like