this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ› Fix listing logic for collection pages

+2 -1
+2 -1
src/pages/collections/[collection].astro
··· 37 37 const conjunctions = clause.split(" and "); 38 38 return conjunctions.every((term) => { 39 39 if (!term.startsWith("#")) { 40 + const matcher = picomatch(term); 40 41 const aliases = work.metadata.aliases ?? []; 41 - return [work.id, ...aliases].some(picomatch(term)); 42 + return [work.id, ...aliases].some((id) => matcher(id)); 42 43 } 43 44 44 45 const tagToTest = resolveAliased(term.replace(/^#/, ""), tags);