generated from nhcarrigan/template
feat: add back-to-workflow button in PRD Creator and Task Loop panels
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user