Skip to content

Commit

Permalink
Merge pull request rob-balfre#426 from andreasnuesslein/patch-1
Browse files Browse the repository at this point in the history
fix filtering when groupFilter exists
  • Loading branch information
rob-balfre authored Jun 27, 2022
2 parents ceac360 + afdf029 commit 328a919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Select.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@
const sortedGroupedItems = [];
groupFilter(groupValues).forEach((groupValue) => {
sortedGroupedItems.push(...groups[groupValue]);
if (groups[groupValue]) sortedGroupedItems.push(...groups[groupValue]);
});
return sortedGroupedItems;
Expand Down

0 comments on commit 328a919

Please sign in to comment.