Skip to content

Commit 2d42a7b

Browse files
committed
feat: allow display of all languages at once
1 parent 95633ea commit 2d42a7b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

HOW_TO_USE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You can customize the catalog view by adding the following parameters to the URL
2727

2828
- `sub=<tag_list>`: Filter the catalog by tags (coma-separated). Tags defined in the `sub` parameter will not be displayed nor changeable by the users, and they'll be able to filter using search or additional tags as usual.
2929

30-
- `lang=<language>`: Filter the catalog by language. The language must be a valid [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) 2-letter code.
30+
- `lang=<language>`: Filter the catalog by language. The language must be a valid [ISO 639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) 2-letter code. You can also disable the language filter by setting the value to `all`.
3131

3232
## 🚀 Create a new workshop
3333

packages/website/src/app/catalog/content-filter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export function matchEntry(workshop: ContentEntry, filter: ContentFilter) {
1111
const matchTitle = searchTooShort || workshop.title.toLowerCase().includes(filter.search);
1212
const matchDescription = searchTooShort || workshop.description.toLowerCase().includes(filter.search);
1313
const matchTag = searchTooShort || workshop.tags.some((tag) => tag.toLowerCase().includes(filter.search));
14-
const matchLanguage = workshop.language === filter.language;
14+
const matchLanguage = filter.language === 'all' || workshop.language === filter.language;
1515
const matchTags = filter.tags.length === 0 || filter.tags.every((tag) => workshop.tags.includes(tag));
1616

1717
return (matchTitle || matchDescription || matchTag) && matchLanguage && matchTags;

0 commit comments

Comments
 (0)