Show placeholders in empty circuit lists
This commit is contained in:
parent
b2034c7dfb
commit
ff84d85eb3
2 changed files with 36 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ export function filterAndSortCircuitSections(
|
|||
|
||||
return { ...section, circuits };
|
||||
})
|
||||
.filter((section) => section.circuits.length > 0);
|
||||
.filter((section) => activeFilters.length === 0 || section.circuits.length > 0);
|
||||
}
|
||||
|
||||
function makeVisibleGridRow(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue