From fcf9e61172394ba1fd0a059dd45cf4c052a7e40a Mon Sep 17 00:00:00 2001 From: Dicken Date: Fri, 10 Jul 2026 20:52:30 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20Checkbox=20in=20Sichtbare-Bereiche-Modal?= =?UTF-8?q?=20jetzt=20zuverl=C3=A4ssig=20sichtbar=20(custom=20statt=20nati?= =?UTF-8?q?ve,=20appearance:none=20umgangen)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/App.jsx | 33 +++++++++++++++++++++------------ 1 file changed, 21 insertions(+), 12 deletions(-) diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index ea2a117..7fdcdb8 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -2490,18 +2490,27 @@ function UserManagement({ toast }) { {Object.entries(grouped).map(([group, tools]) => (
{group}
- {tools.map(t => ( - - ))} + {tools.map(t => { + const checked = visSelection.includes(t.id); + return ( + + ); + })}
))}