-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Improve handling of displayed rows in referrer evolution chart #21165
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
Conversation
a5340cd
to
c8c0aa6
Compare
{ | ||
if ($this->config->add_total_row) { | ||
$totalTranslation = Piwik::translate('General_Total'); | ||
$this->config->selectable_rows[] = array( | ||
$this->selectableRows['total'] = [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using the config here instead of the local property actually caused that the totals row was never displayed in the series picker. Not sure if that ever worked, but now it should 🎉
9c79003
to
a1e4766
Compare
…more for evolution graph
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested locally and without the change the issue is present and with the change the selection persist page reloads + the Total selection is also available (previously it wasn't).
Description:
fixes #21051
Review