diff --git a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/starter/input-format.tsx b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/starter/input-format.tsx index 11aca94bbc..960356aaf0 100644 --- a/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/starter/input-format.tsx +++ b/apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/starter/input-format.tsx @@ -91,8 +91,7 @@ export function FieldFormat({ placeholder = 'fieldName', showType = true, showValue = false, - valuePlaceholder = 'Enter test value', - config, + valuePlaceholder = 'Enter default value', }: FieldFormatProps) { const [storeValue, setStoreValue] = useSubBlockValue(blockId, subBlockId) const valueInputRefs = useRef>({}) @@ -454,7 +453,6 @@ export function FieldFormat({ ) } -// Export specific components for backward compatibility export function InputFormat(props: Omit) { return } diff --git a/apps/sim/blocks/blocks/schedule.ts b/apps/sim/blocks/blocks/schedule.ts index edf21e2df3..1b6de427c5 100644 --- a/apps/sim/blocks/blocks/schedule.ts +++ b/apps/sim/blocks/blocks/schedule.ts @@ -155,6 +155,15 @@ export const ScheduleBlock: BlockConfig = { condition: { field: 'scheduleType', value: ['minutes', 'hourly'], not: true }, }, + { + id: 'inputFormat', + title: 'Input Format', + type: 'input-format', + description: + 'Define input parameters that will be available when the schedule triggers. Use Value to set default values for scheduled executions.', + mode: 'trigger', + }, + { id: 'scheduleSave', type: 'schedule-save',