From 185a73ce4d878fd0afef26a332b2e580185b7224 Mon Sep 17 00:00:00 2001 From: Patrick Buckley Date: Wed, 22 Jul 2026 17:08:59 -0700 Subject: [PATCH] docs(coord): repoint the replayHistory parity citation to shared_static/interactive.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- turnstone/console/static/coordinator/coordinator.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/turnstone/console/static/coordinator/coordinator.js b/turnstone/console/static/coordinator/coordinator.js index 240ea259..3401bf05 100644 --- a/turnstone/console/static/coordinator/coordinator.js +++ b/turnstone/console/static/coordinator/coordinator.js @@ -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; }