From b09153dc43676b794688fcc50960173225572dea Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Tue, 7 Mar 2023 16:34:40 -0300 Subject: [PATCH] changed chat lock placeholder --- langflow/frontend/src/components/chatComponent/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/langflow/frontend/src/components/chatComponent/index.tsx b/langflow/frontend/src/components/chatComponent/index.tsx index 8e4ed58d9..00a278037 100644 --- a/langflow/frontend/src/components/chatComponent/index.tsx +++ b/langflow/frontend/src/components/chatComponent/index.tsx @@ -154,7 +154,7 @@ export default function Chat({ flow, reactFlowInstance }: ChatType) { }} type="text" disabled={lockChat} - value={lockChat?"please wait for the response": chatValue} + value={lockChat?"Thinking...": chatValue} onChange={(e) => { setChatValue(e.target.value); }}