Auto-commit local changes before build (2026-01-19 14:18:29)

This commit is contained in:
Ivo Oskamp 2026-01-19 14:18:29 +01:00
parent c5ff1e11a3
commit 890553f23e
3 changed files with 11 additions and 3 deletions

View File

@ -1 +1 @@
v20260119-09-autotask-disabled-legacy-ticket-ui v20260119-10-runchecks-renderRun-alias

View File

@ -955,7 +955,7 @@ table.addEventListener('change', function (e) {
for (var i = 0; i < runs.length; i++) { for (var i = 0; i < runs.length; i++) {
if (String(runs[i].id) === String(keepRunId)) { idx = i; break; } if (String(runs[i].id) === String(keepRunId)) { idx = i; break; }
} }
renderModal(payload, idx); renderRun(payload, idx);
}); });
} }
}) })
@ -964,7 +964,7 @@ table.addEventListener('change', function (e) {
else alert(e.message || 'Failed.'); else alert(e.message || 'Failed.');
}) })
.finally(function () { .finally(function () {
// State will be recalculated by renderModal/renderRun. // State will be recalculated by renderRun.
}); });
}); });
} }

View File

@ -271,6 +271,14 @@ Changes:
- Hidden the Autotask ticket creation section entirely when the integration is turned off. - Hidden the Autotask ticket creation section entirely when the integration is turned off.
- Re-enabled the original legacy ticket creation flow to allow correct Ticket and TicketJobRun linking without Autotask. - Re-enabled the original legacy ticket creation flow to allow correct Ticket and TicketJobRun linking without Autotask.
## v20260119-10-runchecks-renderRun-alias
### Changes:
- Fixed remaining JavaScript references to the non-existent renderModal() function in the Run Checks flow.
- Ensured consistent use of renderRun() when toggling the Autotask integration on and off.
- Prevented UI errors when re-enabling the Autotask integration after it was disabled.
*** ***
## v0.1.21 ## v0.1.21