mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-09-18 09:29:24 +00:00
Added title to automation name
This commit is contained in:
parent
5f9478dc5a
commit
d8b03995c4
@ -2241,7 +2241,8 @@
|
|||||||
"editTitle": "Edit Automation",
|
"editTitle": "Edit Automation",
|
||||||
"description": "Automations run tools sequentially. To get started, add tools in the order you want them to run.",
|
"description": "Automations run tools sequentially. To get started, add tools in the order you want them to run.",
|
||||||
"name": {
|
"name": {
|
||||||
"placeholder": "Automation name"
|
"label": "Automation Name",
|
||||||
|
"placeholder": "My Automation"
|
||||||
},
|
},
|
||||||
"tools": {
|
"tools": {
|
||||||
"selectTool": "Select a tool...",
|
"selectTool": "Select a tool...",
|
||||||
|
@ -150,12 +150,17 @@ export default function AutomationCreation({ mode, existingAutomation, onBack, o
|
|||||||
|
|
||||||
<Stack gap="md">
|
<Stack gap="md">
|
||||||
{/* Automation Name */}
|
{/* 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
|
<TextInput
|
||||||
placeholder={t('automate.creation.name.placeholder', 'Automation name')}
|
placeholder={t('automate.creation.name.placeholder', 'My Automation')}
|
||||||
value={automationName}
|
value={automationName}
|
||||||
onChange={(e) => setAutomationName(e.currentTarget.value)}
|
onChange={(e) => setAutomationName(e.currentTarget.value)}
|
||||||
size="sm"
|
size="sm"
|
||||||
/>
|
/>
|
||||||
|
</Stack>
|
||||||
|
|
||||||
|
|
||||||
{/* Selected Tools List */}
|
{/* Selected Tools List */}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user