Skip to content

Commit

Permalink
Merge pull request #1451 from ThatConference/fix/activities-display-o…
Browse files Browse the repository at this point in the history
…pen-space

fix: open space sessions no longer showing in session/activities list
  • Loading branch information
brettski committed Aug 3, 2023
2 parents f8422f7 + bf9eb62 commit 5dde9b9
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 5dde9b9

Please sign in to comment.