What I’m trying to do:
I want to hide the loading spinner when I am on a specific form.
What I’ve tried and what’s not working:
I have a Dashboard form in my app, it has a timer, which fetches data using a server.call_s() every 30 sec.
I know call_s() suppresses the spinner for the server call. But in my case it still shows up for a split second. I guess when i’m updating UI only then it shows up.
I have tried to add a custom-role for my Dashboard form like this:
.anvil-role-no-spinner{
#loadingSpinner{
display:none;
}
}
I guess #loadingSpinner is out of scope of my Dashboard Form.
Any help?