From 431e54279134d8969a91c8bb406bf6e6c3f3e87b Mon Sep 17 00:00:00 2001 From: Joeri Exelmans Date: Tue, 21 Oct 2025 10:59:14 +0200 Subject: [PATCH] better scroll behavior on errors in bottom panel --- src/App/BottomPanel.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/App/BottomPanel.tsx b/src/App/BottomPanel.tsx index 8301bf7..b829fc6 100644 --- a/src/App/BottomPanel.tsx +++ b/src/App/BottomPanel.tsx @@ -22,10 +22,12 @@ export function BottomPanel(props: {errors: TraceableError[]}) {
{props.errors.length} errors - {props.errors.map(({message})=> +
+ {props.errors.map(({message, shapeUid})=>
- {message} + {shapeUid}: {message}
)} +
}