Added title to automation name

This commit is contained in:
Connor Yoh 2025-08-26 11:42:46 +01:00
parent 5f9478dc5a
commit d8b03995c4
2 changed files with 9 additions and 3 deletions

View File

@ -2241,7 +2241,8 @@
"editTitle": "Edit Automation",
"description": "Automations run tools sequentially. To get started, add tools in the order you want them to run.",
"name": {
"placeholder": "Automation name"
"label": "Automation Name",
"placeholder": "My Automation"
},
"tools": {
"selectTool": "Select a tool...",

View File

@ -150,12 +150,17 @@ export default function AutomationCreation({ mode, existingAutomation, onBack, o
<Stack gap="md">
{/* Automation Name */}
<Stack gap="xs">
<Text size="sm" fw={500} mb="xs" style={{ color: "var(--mantine-color-text)" }}>
{t('automate.creation.name.label', 'Automation Name')} *
</Text>
<TextInput
placeholder={t('automate.creation.name.placeholder', 'Automation name')}
placeholder={t('automate.creation.name.placeholder', 'My Automation')}
value={automationName}
onChange={(e) => setAutomationName(e.currentTarget.value)}
size="sm"
/>
</Stack>
{/* Selected Tools List */}