-
Notifications
You must be signed in to change notification settings - Fork 16.3k
chore(docs): Correcting docs for echarts customization #36144
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
base: master
Are you sure you want to change the base?
Conversation
Updated theming configuration for ECharts visualizations
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've completed my review and didn't find any issues.
Files scanned
| File Path | Reviewed |
|---|---|
| docs/docs/configuration/theming.mdx | ✅ |
Explore our documentation to understand the languages and file types we support and the files we ignore.
Check out our docs on how you can make Korbit work best for you and your team.
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.
Code Review Agent Run #a0cc9a
Actionable Suggestions - 1
-
docs/docs/configuration/theming.mdx - 1
- Wrong data type for dataZoom show · Line 242-242
Review Details
-
Files reviewed - 1 · Commit Range:
22bbcb1..22bbcb1- docs/docs/configuration/theming.mdx
-
Files skipped - 0
-
Tools
- Whispers (Secret Scanner) - ✔︎ Successful
- Detect-secrets (Secret Scanner) - ✔︎ Successful
Bito Usage Guide
Commands
Type the following command in the pull request comment and save the comment.
-
/review- Manually triggers a full AI review. -
/pause- Pauses automatic reviews on this pull request. -
/resume- Resumes automatic reviews. -
/resolve- Marks all Bito-posted review comments as resolved. -
/abort- Cancels all in-progress reviews.
Refer to the documentation for additional commands.
Configuration
This repository uses Default Agent You can customize the agent settings here or contact your Bito workspace admin at [email protected].
Documentation & Help
| { | ||
| "type": "slider", | ||
| "show": True, | ||
| "show": "True", |
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 dataZoom 'show' option in the echarts_timeseries configuration example is incorrectly set to the string "True" instead of the boolean True. This will prevent the dataZoom slider from displaying in ECharts visualizations, as the library expects a boolean value. The configuration is passed to ECharts, which requires strict data types for proper rendering.
Code suggestion
Check the AI-generated fix before applying
| "show": "True", | |
| "show": True, |
Code Review Run #a0cc9a
Should Bito avoid suggestions like this for future reviews? (Manage Rules)
- Yes, avoid them
|
Superset uses Git pre-commit hooks courtesy of pre-commit. To install run the following: A series of checks will now run when you make a git commit. Alternatively it is possible to run pre-commit by running pre-commit manually: |
Updated theming configuration for ECharts visualizations
SUMMARY
Fixed some docs for echarts overrides
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
TESTING INSTRUCTIONS
ADDITIONAL INFORMATION