Skip to content

Commit

Permalink
Merge pull request #36 from MrDoekje/main
Browse files Browse the repository at this point in the history
Provide tags in the directory
  • Loading branch information
masterkram authored Jan 9, 2025
2 parents eba8a43 + 9ddc23e commit fa4cac5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion composables/useDirectory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function useDirectory() {
_extension: "md",
});

query.only(["featured", "card_image", "description", "title", "_path"]);
query.only(["featured", "card_image", "description", "title", "_path", "tags"]);

return query.sort({ featured: 1 }).find() as Promise<ListingContent[]>;
});
Expand Down

0 comments on commit fa4cac5

Please sign in to comment.