Auto-commit local changes before build (2026-01-13 12:41:58)

This commit is contained in:
Ivo Oskamp 2026-01-13 12:41:58 +01:00
parent 17809e40a5
commit a35ae4bf7a
4 changed files with 13 additions and 1 deletions

View File

@ -1 +1 @@
main
v20260113-03-runchecks-overall-remark

View File

@ -744,6 +744,7 @@ def run_checks_details():
"run_at": _format_datetime(run.run_at) if run.run_at else "-",
"status": status_display,
"remark": run.remark or "",
"overall_message": (getattr(msg, "overall_message", None) or "") if msg else "",
"missed": bool(run.missed),
"is_reviewed": bool(run.reviewed_at),
"reviewed_at": _format_datetime(run.reviewed_at) if (get_active_role() == "admin" and run.reviewed_at) else "",

View File

@ -203,6 +203,9 @@
<dt class="col-3">Indicator</dt>
<dd class="col-9 ellipsis-field" id="rcm_status"></dd>
<dt class="col-3">Overall remark</dt>
<dd class="col-9" id="rcm_overall_message" style="white-space: pre-wrap;"></dd>
<dt class="col-3">Remark</dt>
<dd class="col-9" id="rcm_remark" style="white-space: pre-wrap;"></dd>
@ -949,6 +952,7 @@ if (tStatus) tStatus.textContent = '';
stEl.innerHTML = (d ? ('<span class="status-dot ' + d + '" aria-hidden="true"></span>') : '');
}
document.getElementById('rcm_remark').textContent = run.remark || '';
document.getElementById('rcm_overall_message').textContent = run.overall_message || '';
currentRunId = run.id || null;
if (window.__rcmClearCreateStatus) window.__rcmClearCreateStatus();

View File

@ -13,6 +13,13 @@
- Added explicit color-scheme and forced-color-adjust rules so original mail CSS is respected.
- Ensured consistent mail readability across Edge and Firefox in Inbox, Deleted Inbox, Job Detail, Run Checks, Daily Jobs, and Admin All Mail views.
---
## v20260113-03-runchecks-overall-remark
- Added support to display the overall remark (overall_message) on the Run Checks page.
- Ensured consistency between the Run Checks view and the Job Details page where the overall remark was already available.
***
## v0.1.20