Add experiment logs to the monitoring page #48

Merged
0950726 merged 122 commits from feat/experiment-logs into dev 2026-01-28 10:16:00 +00:00
Showing only changes of commit 2cbd905f0b - Show all commits

View File

@@ -134,11 +134,7 @@ function useJumpToNode() {
return (nodeId: string) => {
// select the node
// user can't jump to global warning, so prevent further logic from running
// user can't jump to global warning, so prevent further logic from running if the warning is a globalWarning
if (nodeId === globalWarning) return;
const node = getNode(nodeId);
if (!node) return;