mirror of
https://github.com/plausible/analytics.git
synced 2024-12-23 17:44:43 +03:00
Make countries/regions/cities tooltips work (#4580)
Previously these tooltips said `Add filter: Country is undefined` because new labels were yet to be in `query`.
This commit is contained in:
parent
88144ecdf6
commit
7f361cf018
@ -60,6 +60,7 @@ All notable changes to this project will be documented in this file.
|
||||
- Fix property filter suggestions 500 error when property hasn't been selected
|
||||
- Bamboo.Mua: add Date and Message-ID headers if missing plausible/analytics#4474
|
||||
- Fix migration order across `plausible_db` and `plausible_events_db` databases plausible/analytics#4466
|
||||
- Fix tooltips for countries/cities/regions links in dashboard
|
||||
|
||||
## v2.1.1 - 2024-06-06
|
||||
|
||||
|
@ -28,8 +28,8 @@ export function FilterLink({ path, filterInfo, onClick, children, extraClass })
|
||||
const newLabels = cleanLabels(newFilters, query.labels, filter[1], labels)
|
||||
|
||||
return (
|
||||
<AppNavigationLink
|
||||
title={`Add filter: ${plainFilterText(query, filter)}`}
|
||||
<AppNavigationLink
|
||||
title={`Add filter: ${plainFilterText({ ...query, labels: newLabels }, filter)}`}
|
||||
className={className}
|
||||
path={path}
|
||||
onClick={onClick}
|
||||
|
Loading…
Reference in New Issue
Block a user