From 70b601442d1b1002cc87733c8e5a86ca20885a76 Mon Sep 17 00:00:00 2001 From: Connor Yoh Date: Tue, 26 Aug 2025 15:54:26 +0100 Subject: [PATCH] Names, chains and tooltips --- .../tools/automate/AutomationCreation.tsx | 15 ++++++++++- .../tools/automate/AutomationEntry.tsx | 25 ++++++++++++------- .../tools/automate/AutomationSelection.tsx | 1 + .../hooks/tools/automate/useAutomationForm.ts | 4 +++ frontend/src/theme/mantineTheme.ts | 17 +++++++++++++ 5 files changed, 52 insertions(+), 10 deletions(-) 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 */} +