Topic: LuxCal 5.3.1 - Time picker problem when 12-hour (am/pm) time format
When on the Settings page the 12-hour time format (am/pm) has been selected, then on the Add / Edit Event page the time picker doesn't work anymore.
This can be solved by editing the file /common/dtpicker.js and on lines 152 and 153 replace "const" by "var", as indicated below:
var am = apm[0].replace("a","am").replace("A","AM");
var pm = apm[0].replace("a","pm").replace("A","PM");
Roel