docs(coord): repoint the replayHistory parity citation to shared_static/interactive.js

Rider from the session queue: the comment cited ui/static/app.js
Pane.replayHistory, which moved to shared_static/interactive.js in the
L-shell step-5a lift — the old path no longer exists.
This commit is contained in:
Patrick Buckley
2026-07-22 17:08:59 -07:00
parent 74eedff1a8
commit 185a73ce4d
@@ -1174,8 +1174,10 @@ function createCoordinatorPane(root, wsId, opts) {
if (preview.length > 600) preview = preview.slice(0, 600) + "…";
} else if (argsRaw) {
// Malformed JSON or non-object args — show the raw payload
// truncated. Matches the interactive replay's substring(0, 100)
// fallback at ui/static/app.js Pane.replayHistory.
// truncated. Matches the interactive replay's fallback in
// shared_static/interactive.js replayHistory (the live parity
// source; the old ui/static/app.js Pane.replayHistory moved
// there in the L-shell step-5a lift).
header = name;
preview = argsRaw.length > 200 ? argsRaw.slice(0, 200) + "…" : argsRaw;
}