From f48884aaf2defe679d31171578392b6ac4f19b59 Mon Sep 17 00:00:00 2001 From: Emir Karabeg Date: Sat, 1 Mar 2025 12:19:01 -0800 Subject: [PATCH] improvement(ui): tool input subblock title and x placeholder --- .../components/sub-block/components/tool-input/tool-input.tsx | 2 +- tools/x/write.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/w/[id]/components/workflow-block/components/sub-block/components/tool-input/tool-input.tsx b/app/w/[id]/components/workflow-block/components/sub-block/components/tool-input/tool-input.tsx index 69a2fddf29..21aa50e700 100644 --- a/app/w/[id]/components/workflow-block/components/sub-block/components/tool-input/tool-input.tsx +++ b/app/w/[id]/components/workflow-block/components/sub-block/components/tool-input/tool-input.tsx @@ -502,7 +502,7 @@ export function ToolInput({ blockId, subBlockId }: ToolInputProps) { {requiredParams.map((param) => (
- {param.id} + {param.id === 'apiKey' ? 'API Key' : param.id}
= { type: 'string', required: true, requiredForToolCall: true, - description: 'X API Bearer token for authentication', + description: 'X API Bearer token', }, text: { type: 'string',