Skip to content

Commit

Permalink
Merge pull request #1189 from City-of-Helsinki/UHF-X-fix-location-fil…
Browse files Browse the repository at this point in the history
…ter-conditional

UHF-X: Fix conditional that caused location filter to pop up unexpetedly
  • Loading branch information
jeremysteerio authored Feb 14, 2025
2 parents a414f2e + 1c6f82b commit bacd297
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/js/linkedevents.min.js

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions src/js/react/apps/linkedevents/containers/FormContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,10 @@ function FormContainer() {
}
{
showLocation &&
useFullLocationFilter ?
<FullLocationFilter /> :
<LocationFilter />
(useFullLocationFilter ?
<FullLocationFilter /> :
<LocationFilter />
)
}
{
showTimeFilter &&
Expand Down

0 comments on commit bacd297

Please sign in to comment.