diff --git a/frontend/src/components/tools/automate/AutomationCreation.tsx b/frontend/src/components/tools/automate/AutomationCreation.tsx index 995e6e6d6..9d88ed6cb 100644 --- a/frontend/src/components/tools/automate/AutomationCreation.tsx +++ b/frontend/src/components/tools/automate/AutomationCreation.tsx @@ -6,6 +6,7 @@ import { Stack, Group, TextInput, + Textarea, Divider, Modal } from '@mantine/core'; @@ -32,6 +33,8 @@ export default function AutomationCreation({ mode, existingAutomation, onBack, o const { automationName, setAutomationName, + automationDescription, + setAutomationDescription, automationIcon, setAutomationIcon, selectedTools, @@ -103,7 +106,7 @@ export default function AutomationCreation({ mode, existingAutomation, onBack, o const automationData = { name: automationName.trim(), - description: '', + description: automationDescription.trim(), icon: automationIcon, operations: selectedTools.map(tool => ({ operation: tool.operation, @@ -173,6 +176,16 @@ export default function AutomationCreation({ mode, existingAutomation, onBack, o /> + {/* Automation Description */} +