MCPcopy Create free account
hub / github.com/Tron521/codex-console-temp / loadRunDetail

Function loadRunDetail

static/js/selfcheck.js:270–279  ·  view source on GitHub ↗
(runId)

Source from the content-addressed store, hash-verified

268}
269
270async function loadRunDetail(runId) {
271 if (!runId) {
272 renderRunDetail(null);
273 return;
274 }
275 const run = await api.get(`/selfcheck/runs/${Number(runId)}`, { requestKey: `selfcheck-run-${runId}`, cancelPrevious: true });
276 selfcheckState.selectedRunId = Number(run.id);
277 renderRuns();
278 renderRunDetail(run);
279}
280
281async function startRun() {
282 const modeNode = document.getElementById('selfcheck-mode-select');

Callers 4

loadRunsFunction · 0.85
executeRepairFunction · 0.85
executeRepairCenterFunction · 0.85
bindEventsFunction · 0.85

Calls 3

renderRunDetailFunction · 0.85
renderRunsFunction · 0.85
getMethod · 0.45

Tested by

no test coverage detected