-
Notifications
You must be signed in to change notification settings - Fork 293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Line chart not appearing for 'Unique Visitors From Search' widget on Site Kit Dashboard #4237
Comments
Related issue and possible fix: #3774 |
@asvinb The current IB here isn't a proper solution for the problem. While it would backfill dates, the problem here is somewhere else, which is slightly more obscure: The only time that Analytics is expected to not return any dates despite I've researched and tested this, and the problem for why this happens (possibly also fixes #3774) is that for some reason the Since I've tested and found the above solution, I'm going to update the IB accordingly. cc @aaemnnosttv @eugene-manuilov for awareness - this is probably worth keeping in mind for the future, should something similar arise again. |
Thanks @felixarntz , that's some really helpful info. |
@felixarntz are you saying we can use it in the request as a filter without listing it as a dimension? |
@aaemnnosttv Yes - |
Ok, IB looks good to me. ✔️ |
Bug Description
On Site Kit Dashboard the
Unique Visitors from Search
widget does not have the line chart underneath it. Initially, I thought it was related to #4086 but after further investigation it appears that it was an issue from a previous release.The line chart should appear as per other widgets.
Do not alter or remove anything below. The following sections will be managed by moderators only.
Acceptance criteria
Implementation Brief
DashboardSearchVisitorsWidget
to removega:channelGrouping
from thedimensions
argument for all reports in the component, so that the sparkline report only usesga:date
fordimensions
and the visitors report doesn't use anydimensions
.ga:channelGrouping
dimension should have never been included here in the first place, since we don't want results grouped by it. It wouldn't even make sense since we usega:channelGrouping
as a dimension filter so it would only ever be a single group anyway.DashboardSearchVisitorsWidget.stories.js
file so that the sparkline and visitor report arguments are adjusted accordingly to the component change, to ensure the Storybook stories still work as expected.Test Coverage
N/A
QA Brief
Unique Visitors from Search
widget shows a zero and does have a flat line beneath it.Changelog entry
The text was updated successfully, but these errors were encountered: