working with errors

This commit is contained in:
Dobromir Popov
2025-07-20 01:52:36 +03:00
parent 92919cb1ef
commit 469269e809
7 changed files with 1237 additions and 149 deletions

View File

@ -42,7 +42,7 @@ class DashboardLayoutManager:
"""Create the auto-refresh interval component"""
return dcc.Interval(
id='interval-component',
interval=1000, # Update every 1 second for maximum responsiveness
interval=250, # Update every 250 ms (4 Hz)
n_intervals=0
)