Show filtered branch count in sidebar rather than total

This commit is contained in:
Mattias Granlund 2023-12-14 00:16:28 +01:00
parent ecf229a018
commit 0df859366c

View File

@ -136,7 +136,11 @@
$height = Math.min(maxHeight, e.detail / (16 * $userSettings.zoom));
}}
/>
<BranchesHeader {scrolled} count={$branches$?.length ?? 0} filtersActive={$filtersActive}>
<BranchesHeader
{scrolled}
count={$filteredBranches$?.length ?? 0}
filtersActive={$filtersActive}
>
<FilterPopupMenu
slot="context-menu"
let:visible