Update detail view on timezone change

This commit is contained in:
Kiyomichi Kosaka 2025-06-20 10:31:06 +02:00
parent 49b30a69e9
commit 65b85f1575

View File

@ -1026,6 +1026,9 @@ document.getElementById('timezone').addEventListener('change', (e) => {
currentTimezone = e.target.value; currentTimezone = e.target.value;
updateCurrentTime(); updateCurrentTime();
updateCalendar(); updateCalendar();
if (currentDetailCob !== null) {
showEonstripDetail(currentDetailCob);
}
}); });
// Set default timezone based on user's locale // Set default timezone based on user's locale