Skip to content

Commit 2ba0f92

Browse files
feat(ui): hide workflow desc in builder edit mode
1 parent c3ab4f4 commit 2ba0f92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

invokeai/frontend/web/src/features/nodes/components/sidePanel/WorkflowsTabLeftPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const WorkflowsTabLeftPanel = () => {
1414
return (
1515
<Flex w="full" h="full" gap={2} flexDir="column">
1616
<ActiveWorkflowNameAndActions />
17-
<ActiveWorkflowDescription />
17+
{mode === 'view' && <ActiveWorkflowDescription />}
1818
{mode === 'view' && <ViewModeLeftPanelContent />}
1919
{mode === 'edit' && <EditModeLeftPanelContent />}
2020
</Flex>

0 commit comments

Comments
 (0)