diff --git a/frontend/packages/dashboard/src/builds.html b/frontend/packages/dashboard/src/builds.html index c0ad63ed..596b50ff 100644 --- a/frontend/packages/dashboard/src/builds.html +++ b/frontend/packages/dashboard/src/builds.html @@ -58,7 +58,7 @@
-

select inputs to nix flake update in /meta/. selected agents rebuild in sequence after the lock bump; manager learns each outcome via the usual rebuilt system event.

+

select inputs to nix flake update in /meta/. selected agents rebuild in sequence after the lock bump; the submitting agent learns each outcome via the usual rebuilt system event.

loading…

diff --git a/frontend/packages/dashboard/src/call.js b/frontend/packages/dashboard/src/call.js index 7500fe53..2440c6df 100644 --- a/frontend/packages/dashboard/src/call.js +++ b/frontend/packages/dashboard/src/call.js @@ -399,7 +399,7 @@ export function renderApprovals() { } else { body.append(el('span', { class: 'meta' }, isInit - ? 'scaffold proposed config repo — manager customises agent.nix before spawn' + ? 'scaffold proposed config repo — submitting agent customises agent.nix before spawn' : 'new sub-agent — container will be created on approve')); } li.append(body); @@ -407,12 +407,12 @@ export function renderApprovals() { // ── decision actions ───────────────────────────────────────── // Deny prompts the operator for an optional reason; the submit // handler stashes it into a hidden `note` input that rides along - // on the POST and is surfaced to the manager via + // on the POST and is surfaced to the submitting agent via // HelperEvent::ApprovalResolved { note }. const denyForm = el('form', { method: 'POST', action: '/api/deny/' + a.id, class: 'inline', 'data-async': '', 'data-no-refresh': '', - 'data-prompt': 'reason for denying (optional, sent to manager):', + 'data-prompt': 'reason for denying (optional, sent to submitter):', }); denyForm.append(el('button', { type: 'submit', class: 'btn btn-deny' }, 'DENY')); li.append(el('div', { class: 'approval-actions' },