Fix the country filter label when clicking on a country on the map (#3109)

This commit is contained in:
Kris Buist 2023-07-11 14:25:36 +02:00 committed by GitHub
parent e6e7f07915
commit c4316d61c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -33,6 +33,7 @@ All notable changes to this project will be documented in this file.
- Fix broken favicons when domain includes a slash
- Fix bug when using multiple [wildcard goal filters](https://github.com/plausible/analytics/pull/3015)
- Fix a bug where realtime would fail with imported data
- Fix a bug where the country name was not shown when [filtering through the map](https://github.com/plausible/analytics/issues/3086)
### Changed
- Treat page filter as entry page filter for `bounce_rate`

View File

@ -121,7 +121,7 @@ class Countries extends React.Component {
this.props.query,
{
country: country.code,
country_name: country.name
country_labels: country.name
}
)
}