Dashboard: Reduce refresh rate from 5s to 10s

This commit is contained in:
Marc Blatter 2026-07-06 22:12:36 +02:00
parent 7a99a799f3
commit b160246bb3
1 changed files with 1 additions and 1 deletions

View File

@ -585,7 +585,7 @@ function toggleSection(header) {
// Refresh prices every 5 seconds // Refresh prices every 5 seconds
setInterval(function() {{ setInterval(function() {{
location.reload(); location.reload();
}}, 5000); }}, 10000);
</script> </script>
</body> </body>
</html>''' </html>'''