hotfix(1.4.1): fix migration FK failure + null toLowerCase crash
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 18m13s

This commit is contained in:
Pepe Ziberi
2026-05-20 22:08:40 +02:00
parent f6819b6a2b
commit 07cede68c0
4 changed files with 33 additions and 4 deletions

View File

@@ -191,13 +191,13 @@ export function RightSidebar({ onSymbolDrop, canEdit, isOpen, onToggle, activeTa
const filteredCategories = categories.map((cat) => ({
...cat,
symbols: cat.symbols.filter((s) =>
s.name.toLowerCase().includes(searchQuery.toLowerCase())
(s.name || '').toLowerCase().includes(searchQuery.toLowerCase())
),
}))
const filteredTenantGroups = tenantGroups.map(g => ({
...g,
symbols: g.symbols.filter(s =>
s.name.toLowerCase().includes(searchQuery.toLowerCase())
(s.name || '').toLowerCase().includes(searchQuery.toLowerCase())
),
})).filter(g => g.symbols.length > 0)