From 3e28c16eb7d2525a67683d43517b0d9a09649b3e Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 10 Aug 2025 22:35:53 +0700 Subject: [PATCH] v1.2.1 --- bot/handlers/post/post_list.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bot/handlers/post/post_list.py b/bot/handlers/post/post_list.py index 16bc518..f08ad10 100644 --- a/bot/handlers/post/post_list.py +++ b/bot/handlers/post/post_list.py @@ -184,10 +184,10 @@ async def view_post_callback(cq: CallbackQuery): # Удалить / назад rows.append([ InlineKeyboardButton(text="Удалить❌", callback_data=f"delete_post_{pid}"), - InlineKeyboardButton(text="Назад◀️", callback_data="open_post_list") - ]) - rows.append( - [InlineKeyboardButton(text="Отправить↪️", switch_inline_query=f"{pid}")]) + InlineKeyboardButton(text="Отправить↪️", switch_inline_query=f"{pid}")]) + + rows.append([InlineKeyboardButton(text="Назад◀️", callback_data="open_post_list")]) + keyboard = InlineKeyboardMarkup(inline_keyboard=rows)