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.
This commit is contained in:
parent
0ebc7ef777
commit
a5ab57d144
1 changed files with 2 additions and 2 deletions
|
|
@ -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'}
|
||||
<Icon name={binIcon(b.icon)} size={13} className="rail-icon" />
|
||||
title={isActive ? 'Click to clear bin filter' : 'Filter to this bin'}>
|
||||
<Icon name={binIcon(b.icon)} size={13} className="rail-icon" />
|
||||
<span>{b.name}</span>
|
||||
<span className="rail-count">{b.count}</span>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue