-
Notifications
You must be signed in to change notification settings - Fork 14.3k
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(explore): column data type tooltip format #30588
Conversation
@@ -55,8 +55,7 @@ const TooltipSection = ({ | |||
text: ReactNode; | |||
}) => ( | |||
<TooltipSectionWrapper> | |||
<TooltipSectionLabel>{label}</TooltipSectionLabel> | |||
<span>{text}</span> | |||
<TooltipSectionLabel>{label}</TooltipSectionLabel>: <span>{text}</span> |
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.
might be a legit use case for a
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.
Also not sure the span has any real purpose here. ¯\_(ツ)_/¯
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 had a {' '}
and I think prettier changed it to what is now there. Generally I prefer the {' '}
to
, and if prettier is configured to do what it did, let's roll with it. About the span, I think it's referenced in the CSS so that it's not bolded.
helm/superset/README.md
Outdated
@@ -23,7 +23,7 @@ NOTE: This file is generated by helm-docs: https://github.com/norwoodj/helm-docs | |||
|
|||
# superset | |||
|
|||
![Version: 0.12.13](https://img.shields.io/badge/Version-0.12.13-informational?style=flat-square) | |||
![Version: 0.13.0](https://img.shields.io/badge/Version-0.13.0-informational?style=flat-square) |
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.
Just curious, why did we have a minor bump? Still figuring out the rhyme or reason of helm version numbers.
n/m it's the addition of extraLablels... I see.
superset-frontend/packages/superset-ui-chart-controls/package.json
Outdated
Show resolved
Hide resolved
And here I am adding review comments all over what looks like a funky rebase. I was about to comment "what is the scope of this PR?" 🤦 |
Oops, gitfu fail, got thrown off by a local rebate + merged a commit from the PR |
Minor visual tweak to add a column and a space inside the Explore -> LeftPanelDatasetView -> Column datatype tooltip
230c5f5
to
2b54e6d
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 love how short this is now :)
(cherry picked from commit 73768f6)
(cherry picked from commit 73768f6)
(cherry picked from commit 73768f6)
(cherry picked from commit 73768f6)
Minor visual tweak to add a column and a space inside the Explore -> LeftPanelDatasetView -> Column datatype tooltip.
Adding a colon and a space, and showing the data type as uppercase as it's pretty standard to expose it in that way elsewhere in Superset and as a general convention
before
after