From 0b140c4f1e9bedcb95f99dd3a2150fc11f286889 Mon Sep 17 00:00:00 2001 From: Lucas Berger Date: Sat, 31 Jan 2026 21:34:45 -0500 Subject: [PATCH] fix(05-01): simplify Show Menu to text-only help message Native Telegram node replyKeyboard wasn't displaying. Fallback to simple text message listing available commands. Can revisit persistent keyboard feature later. Co-Authored-By: Claude Opus 4.5 --- n8n-workflow.json | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/n8n-workflow.json b/n8n-workflow.json index 54524aa..3b7de90 100644 --- a/n8n-workflow.json +++ b/n8n-workflow.json @@ -2074,23 +2074,9 @@ "resource": "message", "operation": "sendMessage", "chatId": "={{ $json.message.chat.id }}", - "text": "Use buttons below or type commands:", + "text": "Choose a command:\n\n• Status - view containers\n• Start/Stop/Restart \n• Update \n• Logs ", "additionalFields": { - "parse_mode": "HTML", - "replyMarkup": "replyKeyboard", - "replyKeyboard": { - "rows": [ - { "row": { "buttons": [{ "text": "Status" }] } }, - { "row": { "buttons": [{ "text": "Start" }, { "text": "Stop" }] } }, - { "row": { "buttons": [{ "text": "Restart" }, { "text": "Update" }] } }, - { "row": { "buttons": [{ "text": "Logs" }] } } - ] - }, - "replyKeyboardOptions": { - "resize_keyboard": true, - "one_time_keyboard": false, - "is_persistent": true - } + "parse_mode": "HTML" } }, "id": "telegram-show-menu",