From 4008a8c88389eedce4a659556735e168377e1b2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Fri, 20 Mar 2026 17:59:11 +0400 Subject: [PATCH] Use "Results" header for category search results --- app/components/places-sidebar.gjs | 2 +- tests/acceptance/search-test.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/app/components/places-sidebar.gjs b/app/components/places-sidebar.gjs index fb81bd2..bf39204 100644 --- a/app/components/places-sidebar.gjs +++ b/app/components/places-sidebar.gjs @@ -146,7 +146,7 @@ export default class PlacesSidebar extends Component { get isNearbySearch() { const qp = this.router.currentRoute.queryParams; - return !qp.q && qp.lat && qp.lon; + return !qp.q && !qp.category && qp.lat && qp.lon; }