-
Notifications
You must be signed in to change notification settings - Fork 16k
fix(dataset): render default URL description properly in settings #35669
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
The default URL field description was displaying escaped HTML tags as plain text instead of rendering them. Replaced HTML string with proper React JSX using Typography.Text component to display the example URL path in code format. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
Based on your review schedule, I'll hold off on reviewing this PR until it's marked as ready for review. If you'd like me to take a look now, comment
|
Bito Automatic Review Skipped - Draft PR |
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 |
---|---|
superset-frontend/src/components/Datasource/components/DatasourceEditor/DatasourceEditor.jsx | ✅ |
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.
/review |
🎪 Showtime deployed environment on GHA for ec70a9c • Environment: http://54.188.63.112:8080 (admin/admin) |
…5669) Co-authored-by: Claude <[email protected]> (cherry picked from commit f405174)
SUMMARY
Fixes the dataset edit modal's default URL field description which was displaying escaped HTML tags as plain text instead of rendering them properly.
The description text included
<span style=„white-space: nowrap;">
tags that were being shown literally to users. This has been replaced with proper React JSX usingTypography.Text
component with thecode
prop to display the example URL path/superset/dashboard/{id}/
in a code-formatted style.BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
Before: The description showed raw HTML text:
After: The description now renders properly with the example URL in code format:
TESTING INSTRUCTIONS
/superset/dashboard/{id}/
shown in code format (not as escaped HTML)ADDITIONAL INFORMATION
🤖 Generated with Claude Code