From 34914b4f1996b140e3ddcd22c95f8d6bfa8e2d03 Mon Sep 17 00:00:00 2001 From: elpatron Date: Sun, 31 May 2026 11:52:10 +0200 Subject: [PATCH] fix(ui): Segel-Picker-Layout und Formular-Reset korrigieren MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flex-Layout für Pills und Toggle wiederherstellen und den Einklapp-Zustand beim Leeren des Ereignisformulars zurücksetzen. Co-authored-by: Cursor --- client/src/App.css | 3 +++ client/src/components/LogEntryEditor.tsx | 1 + 2 files changed, 4 insertions(+) diff --git a/client/src/App.css b/client/src/App.css index 49da2d8..89e8abe 100644 --- a/client/src/App.css +++ b/client/src/App.css @@ -2719,6 +2719,9 @@ html.theme-cupertino .events-scroll-container { /* Event Editor Interactive Sails Picker */ .sails-picker-container { + display: flex; + flex-direction: column; + gap: 8px; grid-column: 1 / -1; margin-top: -4px; } diff --git a/client/src/components/LogEntryEditor.tsx b/client/src/components/LogEntryEditor.tsx index 1bb7164..0213a5c 100644 --- a/client/src/components/LogEntryEditor.tsx +++ b/client/src/components/LogEntryEditor.tsx @@ -897,6 +897,7 @@ export default function LogEntryEditor({ setEvRemarks('') setEvLocationName('') setEditingEventIndex(null) + setSailsPickerExpanded(false) } const fillEventForm = (ev: LogEvent) => {