Skip to content

Commit

Permalink
slider fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pieterprovoost committed Nov 6, 2024
1 parent 9a440a7 commit 0d6f594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function handleSearch() {

<MarkerClusterGroup maxClusterRadius={10}>
{
occurrences.filter(x => x.decimallatitude && x.decimallongitude && x.as > slider).map((occ, i) => <Marker key={i} position={[occ.decimallatitude, occ.decimallongitude]} >
occurrences.filter(x => x.decimallatitude && x.decimallongitude && x.as >= slider).map((occ, i) => <Marker key={i} position={[occ.decimallatitude, occ.decimallongitude]} >
<Popup>
<Table className="text-sm table-sm">
<tbody>
Expand Down

0 comments on commit 0d6f594

Please sign in to comment.