Auto-commit local changes before build (2026-01-16 10:07:17)

This commit is contained in:
Ivo Oskamp 2026-01-16 10:07:17 +01:00
parent 748769afc0
commit 8a16ff010f
3 changed files with 10 additions and 3 deletions

View File

@ -1 +1 @@
v20260116-01-autotask-ticket-id-normalization v20260116-02-runchecks-autotask-create-refresh

View File

@ -901,7 +901,8 @@ 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); // Re-render the currently open Run Checks modal with fresh data.
renderRun(payload, idx);
}); });
} }
}) })
@ -910,7 +911,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

@ -137,6 +137,12 @@ Changes:
- Enabled correct retrieval of the Autotask ticketNumber via a follow-up GET after ticket creation. - Enabled correct retrieval of the Autotask ticketNumber via a follow-up GET after ticket creation.
- Prevented false error messages where ticket creation succeeded but no ticket id was detected. - Prevented false error messages where ticket creation succeeded but no ticket id was detected.
## v20260116-02-runchecks-autotask-create-refresh
Changes:
- Fixed a JavaScript error in the Run Checks view where a non-existent renderModal() function was called after creating an Autotask ticket.
- Replaced the renderModal() call with renderRun() to properly refresh the Run Checks modal state.
- Ensured the Autotask ticket status is updated in the UI without throwing a frontend error.
*** ***