From 16243306b2930f100cd89e5a28cfb168333aac6e Mon Sep 17 00:00:00 2001 From: 1AhmedYasser <26207361+1AhmedYasser@users.noreply.github.com> Date: Fri, 12 Jun 2026 14:26:17 +0300 Subject: [PATCH] chore(1068): Added chat id to predefinedInputKeys --- GUI/src/components/FlowElementsPopup/PreviousVariables.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/GUI/src/components/FlowElementsPopup/PreviousVariables.tsx b/GUI/src/components/FlowElementsPopup/PreviousVariables.tsx index 5a39a4917..45261b99e 100644 --- a/GUI/src/components/FlowElementsPopup/PreviousVariables.tsx +++ b/GUI/src/components/FlowElementsPopup/PreviousVariables.tsx @@ -109,6 +109,11 @@ const PreviousVariables: FC = ({ node }) => { key: 'Empty Content Type', value: stringToTemplate(''), }, + { + id: predefinedInputKeys[1], + key: 'Chat Id', + value: stringToTemplate('chatId'), + }, ]; setAssignedVariables([...assignElements, ...predefinedInputElements, ...newAssignElements]);