-
Notifications
You must be signed in to change notification settings - Fork 117
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
Pivot table prototype #3694
Pivot table prototype #3694
Conversation
* preliminary table styling update * adjustment to table height * hide drag area outline
✅ Deploy Preview for rill-developer ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
* install d3-format types and fix typing for time grain access * typeguard in pivot config
timeStart: timeRange?.start | ||
? timeRange.start | ||
: timeControls.timeStart, | ||
timeEnd: timeRange?.end ? timeRange.end : timeControls.timeEnd, |
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.
limit = "100", | ||
offset = "0", |
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.
Why are these strings?
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.
The type for these from orval is string
. The swagger spec says it is string as well. Not sure if this is done intentionally.
TODOs
#3934