Auto-commit local changes before build (2026-01-20 13:42:54)

This commit is contained in:
Ivo Oskamp 2026-01-20 13:42:54 +01:00
parent 67fb063267
commit 3400af58d7
3 changed files with 8 additions and 2 deletions

View File

@ -1 +1 @@
v20260120-10-runchecks-bootstrap-compat-fix
v20260120-11-runchecks-autotask-status-label

View File

@ -1085,7 +1085,7 @@ table.addEventListener('change', function (e) {
tdTitle.textContent = (t.title || '');
var tdStatus = document.createElement('td');
tdStatus.textContent = (t.status_label || String(t.status || ''));
tdStatus.textContent = (t.statusLabel || t.status_label || String(t.status || ''));
tr.appendChild(tdBtn);
tr.appendChild(tdNum);

View File

@ -451,6 +451,12 @@ Changes:
- Updated Run Checks modal opening and Autotask link modal flow to use the compatibility helpers.
- Restored normal Run Checks popup behavior (click handlers execute again because the page no longer errors on load).
## v20260120-11-runchecks-autotask-status-label
- Updated the “Link existing Autotask ticket” list to display the status label instead of the numeric status code.
- Added a safe fallback chain so the UI shows:
statusLabel (API) -> status_label (legacy) -> numeric status.
***
## v0.1.21