Adrian
Adrian
I think this is pretty much a duplicate of #6315, isn't it?
That's the normal back button behavior - it generally avoids reloading everything. I don't think strong cache busting is needed there. FWIW eventually we'd like to move this page to...
@AjobK please rebase to get the changes from #7170 especially when you need to touch some filemanager code
There's some rather strange rename in the latest git commit... ``` rename from indico/web/client/js/custom_elements/ind_combobox.js rename to ' ``` I guess renaming it to `'` was not intentional?
I think the latest change may have broken something... it behaves very weirdly in both 12h and 24h mode. FWIW in both cases I tried to type `23:00` but even...
So this fixed the bug (I had tried the same fix earlier and it worked for me), but the displayed time in the field is always 24h format now. Also...
Firefox 140, the default date format from my system locale is 24h. It's a normal date/time registration form field with dd/mm/yyyy for the date format and 12h for the time...
`timeFormat` is `any` in `return time.toLocaleString(TIME_FORMAT_LOCALE[timeFormat])`, so the second argument in `toLocaleString` is undefined, and thus it probably defaults to the system default.
I haven't thoroughly tested it, but this seems to fix it: ```patch diff --git a/indico/web/client/js/react/components/time/TimePicker.jsx b/indico/web/client/js/react/components/time/TimePicker.jsx index 9ea4d889ff..133a901247 100644 --- a/indico/web/client/js/react/components/time/TimePicker.jsx +++ b/indico/web/client/js/react/components/time/TimePicker.jsx @@ -66,7 +66,7 @@ function formatTimeString(value, timeFormat)...
Sorry for the delay, was busy with some other areas of Indico and needed to focus there. A few things I found when testing the latest version: - Roombooking breaks...