From 732231ce13e4b2bd3e6a0962e90284db69657c88 Mon Sep 17 00:00:00 2001 From: Benjamin Sutter Date: Mon, 18 May 2026 18:26:20 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20always=20show=20tab=20scroll=20buttons?= =?UTF-8?q?=20in=20PropertyDetailView=20=E2=80=94=20Aktivit=C3=A4tslog=20s?= =?UTF-8?q?ichtbar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- src/components/supply/PropertyDetailView.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/supply/PropertyDetailView.tsx b/src/components/supply/PropertyDetailView.tsx index bee79e8..dacd1ce 100644 --- a/src/components/supply/PropertyDetailView.tsx +++ b/src/components/supply/PropertyDetailView.tsx @@ -311,7 +311,7 @@ function SignalsPanel({ signals }: { signals: FutureSignal[] }) { // ── Main component ──────────────────────────────────────────────────────────── -const TABS = ['Übersicht', 'Verhandlung & Markt', 'Hard Facts', 'Soft Factors', 'Matchability', 'Datenqualität', 'Quelle', 'Signale', 'Aktivitätslog'] as const +const TABS = ['Übersicht', 'Verhandlung', 'Hard Facts', 'Soft Factors', 'Matchability', 'Datenqualität', 'Quelle', 'Signale', 'Aktivitätslog'] as const export function PropertyDetailView({ propertyId, onClose }: PropertyDetailViewProps) { const [tab, setTab] = useState(0) @@ -393,11 +393,13 @@ export function PropertyDetailView({ propertyId, onClose }: PropertyDetailViewPr value={tab} onChange={(_, v) => setTab(v)} variant="scrollable" - scrollButtons="auto" + scrollButtons + allowScrollButtonsMobile sx={{ borderBottom: '1px solid #e2e8f0', flexShrink: 0, '& .MuiTab-root': { textTransform: 'none', fontSize: '0.8rem', minWidth: 'auto', px: 1.5 }, + '& .MuiTabScrollButton-root': { width: 28 }, }} > {TABS.map(label => (