From 848f24e7c536d88989987485592265c6b668c736 Mon Sep 17 00:00:00 2001 From: data Date: Tue, 3 Mar 2026 08:17:14 +0100 Subject: [PATCH] fix: Kabel-Filter Checkbox besser sichtbar machen MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Checkbox jetzt rechts oben neben Titel positioniert - Grauer Hintergrund mit Rahmen für bessere Sichtbarkeit - Filter-Icon hinzugefügt - Inline-Form für sofortiges Submit beim Klicken Co-Authored-By: Claude Sonnet 4.5 --- import.php | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/import.php b/import.php index 552eb35..d7e6143 100755 --- a/import.php +++ b/import.php @@ -2908,19 +2908,20 @@ if ($action == 'edit' && $import->id > 0) { print ' '.count($datanormPreviewMatches).' '.$langs->trans('Matches').''; // Filter: Kabel ausblenden (in eigenem Form für sofortiges Submit) - print ''; - print '
'; + $hideCables = GETPOST('hide_cables', 'int'); + $checked = $hideCables ? ' checked' : ''; + print '
'; + print ''; print ''; print ''; print ''; - $hideCables = GETPOST('hide_cables', 'int'); - $checked = $hideCables ? ' checked' : ''; - print '
'; + print '
'; print ''; print '
';