fix(ui): bottom-bar island lives in workflow editor, not on a separate page #36
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/island-in-workflow-editor"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Reverts #35's routing changes and embeds the pause/resume island in the existing workflow editor view, where the user actually wanted it.
What #32 + #35 got wrong: I built a dedicated
/plays/{sid}detail page and redirected Run to it. The user wanted the existing workflow editor view (with live span tree, runtime overlay) — plus the island added at the bottom. Not a separate page.Restored:
/plays/{sid}→ redirects to/workflows/{wf}/edit?play={sid}(pre-#32 behavior).Added (the actual requested feature):
workflow_editor.html, appears only whenOVERLAY_PLAY_SIDis set.play_resume) · Events.localStorage.pollOverlay()so it stays live without a second polling cycle.The dedicated
play_detail.htmlpage still exists for users who navigate directly but is no longer the canonical Run target.