One of the most annoying bugs I've found in Hubitats dashboards - it sometimes will get stuck on "Loading Variables" or some other part of the loading screen (which should not exist!) on my wall tablets. I run Fully Kiosk Browser and I was able to find a fix. In Fully Kiosk settings go to advanced web settings and add the following javascript:
//The code below reloads the tablet page if it gets stuck on the dashboard loading animation
// Wait for 2 seconds (200 milliseconds)
setTimeout(function() {
// Check if the loader element is still on the screen
var loader = document.querySelector('.loader');if (loader) { // If the loader is present, reload the page console.log("Loader is still present, reloading the page..."); location.reload(); } else { console.log("Loader not found, no reload necessary."); }
}, 2000); // 2000 milliseconds = 2 seconds