-
Notifications
You must be signed in to change notification settings - Fork 622
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
Domain fix #3287
Domain fix #3287
Conversation
… can still get the row and column domains.
ancestorParse: parent ? {...parent.component.data.ancestorParse} : {} | ||
ancestorParse: parent ? {...parent.component.data.ancestorParse} : {}, | ||
// data is faceted if the spec is a facet spec or the parent has faceted data and no data is defined | ||
isFaceted: isFacetSpec(spec) || (parent && parent.component.data.isFaceted && !spec.data) |
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.
If I understand correctly, this will also be correct for facet of layer right? (Just asking to make sure)
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.
Yeah, it works with my example.
Test failing |
01a4769
to
d2daca8
Compare
Revised and added some more tests. |
d2daca8
to
d5a3b09
Compare
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.
I only did a quick read. Feel free to merge if you are confident that you have thoroughly tested.
Fixes #3284