Skip to content

Commit

Permalink
fix: open space sessions no longer showing in session/activities list
Browse files Browse the repository at this point in the history
  • Loading branch information
brettski committed Aug 3, 2023
1 parent f8422f7 commit bf9eb62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "that-us",
"version": "3.11.19",
"version": "3.11.20",
"description": "THAT.us website",
"main": "index.js",
"type": "module",
Expand Down
3 changes: 2 additions & 1 deletion src/_components/activities/List.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@
$: primaryCategorySort = activitiesFiltered.filter(
(activity) =>
(activity.category == 'FAMILY' ? family : false) ||
(activity.category == 'PROFESSIONAL' ? professional : false)
(activity.category == 'PROFESSIONAL' ? professional : false) ||
activities.category == null
);
$: activitiesLocationCategoryFiltered = primaryCategorySort.filter(
Expand Down

0 comments on commit bf9eb62

Please sign in to comment.