From c4f8b5444c5d899c6633b59a700f6435784ba5fe Mon Sep 17 00:00:00 2001 From: Eljakim Herrewijnen Date: Wed, 3 Apr 2024 23:22:08 +0200 Subject: [PATCH] bugfix filter perceel --- react_usse/src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react_usse/src/App.js b/react_usse/src/App.js index efadfdd2..79ddd70d 100644 --- a/react_usse/src/App.js +++ b/react_usse/src/App.js @@ -74,7 +74,7 @@ class App extends Component { render() { const { allLocations, query, price, minPrice, minPerceel, afstandNFI, afstandHoogstraat, afstandKorhoen, afstandBakkersdijk } = this.state let showingLocations - if (query || price || afstandNFI || afstandHoogstraat || afstandKorhoen || afstandBakkersdijk) { + if (query || price || minPerceel || afstandNFI || afstandHoogstraat || afstandKorhoen || afstandBakkersdijk) { showingLocations = allLocations; if(query){ const match = new RegExp(escapeRegExp(query), 'i')