From a5ab57d1449de69a11b06371318960bf29cd6c05 Mon Sep 17 00:00:00 2001 From: Zac Gaetano Date: Sun, 24 May 2026 14:46:36 -0400 Subject: [PATCH] fix: add missing > to close bin rail div opening tag Missing > after title attribute caused Babel parse error, preventing Library component from being registered globally. --- services/web-ui/public/screens-library.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/web-ui/public/screens-library.jsx b/services/web-ui/public/screens-library.jsx index ece710e..c5ea602 100644 --- a/services/web-ui/public/screens-library.jsx +++ b/services/web-ui/public/screens-library.jsx @@ -260,8 +260,8 @@ function Library({ navigate, onOpenAsset, openProject, onClearProject }) { onDrop={function(e) { onBinDrop(b.id, e); }} onDragLeave={onBinDragLeave} style={{ cursor: 'pointer' }} - title={isActive ? 'Click to clear bin filter' : 'Filter to this bin'} - + title={isActive ? 'Click to clear bin filter' : 'Filter to this bin'}> + {b.name} {b.count}