feat: add back-to-workflow button in PRD Creator and Task Loop panels

This commit is contained in:
2026-03-07 00:33:23 -08:00
committed by Naomi Carrigan
parent 7911d67d0d
commit 7a07958b65
3 changed files with 63 additions and 31 deletions
+11 -1
View File
@@ -512,6 +512,10 @@
{#if showPrdPanel}
<PrdPanel
onClose={() => (showPrdPanel = false)}
onBackToWorkflow={() => {
showPrdPanel = false;
showWorkflowPanel = true;
}}
workingDirectory={workingDirectory || selectedDirectory}
/>
{/if}
@@ -521,7 +525,13 @@
{/if}
{#if showTaskLoop}
<TaskLoopPanel onClose={() => (showTaskLoop = false)} />
<TaskLoopPanel
onClose={() => (showTaskLoop = false)}
onBackToWorkflow={() => {
showTaskLoop = false;
showWorkflowPanel = true;
}}
/>
{/if}
{#if showWorkflowPanel}