Merge branch 'Calendar/fix-javascript-error' into 'master'

fixed javascript typo error

See merge request fronk/thetool!2078
This commit is contained in:
Luca Haid
2026-02-02 18:39:12 +00:00

View File

@@ -1114,7 +1114,7 @@ if (typeof (EventSource) !== 'undefined') {
let jsondata;
source.addEventListener('error', function (e) {
let txt;
switch (Event.target.readyState) {
switch (e.target.readyState) {
// if reconnecting
case EventSource.CONNECTING:
txt = 'Reconnecting...';