From 824a7978ac7f8ac33d8155c2a8a09d64fe91cc63 Mon Sep 17 00:00:00 2001 From: gitadmin Date: Mon, 29 Sep 2025 21:51:47 +0300 Subject: [PATCH] =?UTF-8?q?=D1=81=D0=B8=D0=BD=D1=85=D1=80=D0=BE=D0=BD?= =?UTF-8?q?=D0=B8=D0=B7=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D1=82=D1=8C=20=D0=BF?= =?UTF-8?q?=D1=80=D0=B0=D0=B2=D1=83=D1=8E=20=D0=BF=D0=B0=D0=BD=D0=B5=D0=BB?= =?UTF-8?q?=D1=8C=20=D1=81=20=D0=B2=D1=8B=D0=B1=D1=80=D0=B0=D0=BD=D0=BD?= =?UTF-8?q?=D0=BE=D0=B9=20=D0=B7=D0=B0=D0=BF=D0=B8=D1=81=D1=8C=D1=8E=20?= =?UTF-8?q?=D0=BF=D1=80=D0=B8=20=D0=BF=D0=BE=D0=B8=D1=81=D0=BA=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/index.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/templates/index.html b/templates/index.html index 97c46f9..e7f9948 100644 --- a/templates/index.html +++ b/templates/index.html @@ -3195,6 +3195,8 @@ document.addEventListener('DOMContentLoaded', () => { // Выделяем найденный пост highlightSelectedPost(result.id); + // Показываем детали поста в правой панели + showPostDetails(result.id); } } else if (type === 'events') { clearEventsSearchHighlight(); @@ -3205,6 +3207,8 @@ document.addEventListener('DOMContentLoaded', () => { // Выделяем найденное событие highlightSelectedEvent(result.id); + // Показываем детали события в правой панели + showEventDetails(result.id); } } }