-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Fix funnels time to convert dashboard item height #5259
Conversation
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.
Dashboard item still not rendering for me.
Found the bug - looks like it was due to a cachedResults not being passed down correctly from DashboardItem into funnelLogic for our time conversion results. Made the fix! |
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.
Hmm strange, it seems to be working on my end. Can you chck the network request to make sure you're not getting null/empty time values? |
Can't seem to reproduce it :/ Screen.Recording.2021-07-21.at.11.13.29.AM.mov |
Can confirm I have the same issue @paolodamico reported. Will see what can be done. |
Weird stuff is happening, probably connected to D3 that I'm not able to immediately understand. Even though the |
This works now. I had to:
I'll merge this now since the fix seems to work fine. @alexkim205 , for a proper fix though, try getting a funnel that has any value in the first bar and then seeing that on a dashboard. |
Thanks for the details, this sounds like a problem with where D3 paints things. The three paths there seem to belong to the x-axis and I have it now so that the four bars should be painted in the root element. I'll put out a more permanent fix where I bring bar path elements into a separate canvas so that D3 knows exactly where to put them without overwriting/deleting anything (which I suspect is happening). |
Changes
Continues work on #5253
Checklist