Skip to content

Commit f45c3f2

Browse files
committed
Update names for fields in hitl
1 parent 2513385 commit f45c3f2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

apps/sim/blocks/blocks/human_in_the_loop.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ export const HumanInTheLoopBlock: BlockConfig<ResponseBlockOutput> = {
2727
// },
2828
{
2929
id: 'builderData',
30-
title: 'Paused Output',
30+
title: 'Display Data',
3131
type: 'response-format',
3232
// condition: { field: 'operation', value: 'human' }, // Always shown since we only support human mode
3333
description:
3434
'Define the structure of your response data. Use <variable.name> in field names to reference workflow variables.',
3535
},
3636
{
3737
id: 'notification',
38-
title: 'Notification',
38+
title: 'Notification (Send URL)',
3939
type: 'tool-input',
4040
// condition: { field: 'operation', value: 'human' }, // Always shown since we only support human mode
4141
description: 'Configure notification tools to alert approvers (e.g., Slack, Email)',
@@ -57,7 +57,7 @@ export const HumanInTheLoopBlock: BlockConfig<ResponseBlockOutput> = {
5757
// },
5858
{
5959
id: 'inputFormat',
60-
title: 'Resume Input',
60+
title: 'Resume Form',
6161
type: 'input-format',
6262
// condition: { field: 'operation', value: 'human' }, // Always shown since we only support human mode
6363
description: 'Define the fields the approver can fill in when resuming',

apps/sim/blocks/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@ export interface SubBlockConfig {
217217
hideFromPreview?: boolean // Hide this subblock from the workflow block preview
218218
requiresFeature?: string // Environment variable name that must be truthy for this subblock to be visible
219219
description?: string
220+
tooltip?: string // Tooltip text displayed via info icon next to the title
220221
value?: (params: Record<string, any>) => string
221222
grouped?: boolean
222223
scrollable?: boolean

0 commit comments

Comments
 (0)