Fix active navigation tab + quick workflows fixes (#8567)

- Active navigation tab hovered in show page
- remove timeline tab + rename workflow tab
- remove {{variable}} placeholder
- fix margin
- Workflow Runs and Versions show page title

<img width="807" alt="Capture d’écran 2024-11-18 à 18 23 12"
src="https://github.com/user-attachments/assets/688dfc67-362e-4f04-b436-3ff94d7e3e4a">
This commit is contained in:
Thomas Trompette
2024-11-19 11:55:25 +01:00
committed by GitHub
parent c17e18b1e9
commit cdf0240ccb
7 changed files with 22 additions and 12 deletions

View File

@ -204,7 +204,7 @@ export const WorkflowEditActionFormSendEmail = ({
<VariableTagInput
inputId="email-input"
label="Email"
placeholder="Enter receiver email (use {{variable}} for dynamic content)"
placeholder="Enter receiver email"
value={field.value}
onChange={(email) => {
field.onChange(email);
@ -220,7 +220,7 @@ export const WorkflowEditActionFormSendEmail = ({
<VariableTagInput
inputId="email-subject-input"
label="Subject"
placeholder="Enter email subject (use {{variable}} for dynamic content)"
placeholder="Enter email subject"
value={field.value}
onChange={(email) => {
field.onChange(email);
@ -236,7 +236,7 @@ export const WorkflowEditActionFormSendEmail = ({
<VariableTagInput
inputId="email-body-input"
label="Body"
placeholder="Enter email body (use {{variable}} for dynamic content)"
placeholder="Enter email body"
value={field.value}
onChange={(email) => {
field.onChange(email);

View File

@ -187,7 +187,7 @@ export const WorkflowEditActionFormServerlessFunction = ({
key={pathKey}
inputId={`input-${inputKey}`}
label={inputKey}
placeholder="Enter value (use {{variable}} for dynamic content)"
placeholder="Enter value"
value={`${inputValue || ''}`}
onChange={(value) => handleInputChange(value, currentPath)}
/>