diff --git a/src/components/Map/MapView.jsx b/src/components/Map/MapView.jsx index ae8a193..c6ea70a 100644 --- a/src/components/Map/MapView.jsx +++ b/src/components/Map/MapView.jsx @@ -365,8 +365,14 @@ export default function MapView({ }); } } else { + const q = (item.title || item.name || "").toString().trim(); skipAutoZoomRef.current = false; - setSearchQuery(""); + setSearchQuery(q); + if (q) { + setMainFilter("All"); + setSubFilter("All"); + setTimeFilter("PAST"); + } } };