Hi,
I have a dashboard and im refreshing my dashboard livestream. And im running this dashboard on linux server. After I run this on server, I can see new data currently, and I have a counter, and counter is increasing every hour, there is no problem about that.
But after 1 day I cant select today, I can see counter, I have new data but I cant select today on datepicker. Actually I think I did everything right, can you say where problem comes from?
My datepicker is smth like this:
dcc.DatePickerSingle(id='gun-sec1',
min_date_allowed=datetime.date(2021, 1, 13),
max_date_allowed=datetime.datetime.today().date(),
initial_visible_month=datetime.datetime.today().date(),
date=datetime.datetime.today().date(),
display_format='YYYY-MM-DD'
),