-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
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
[core] Use explicit html entity #15132
[core] Use explicit html entity #15132
Conversation
Details of bundle changes.Comparing: bbfbb0c...9722821
|
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.
It's good for me, please review. (there are no Argos diffs 🎉)
c0a0c6d
to
9722821
Compare
@@ -85,7 +85,7 @@ const FormLabel = React.forwardRef(function FormLabel(props, ref) { | |||
})} | |||
data-mui-test="FormLabelAsterisk" | |||
> | |||
{'\u2009*'} | |||
 {'*'} |
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.
It should fix #14079.
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.
LGTM
@@ -18,14 +18,14 @@ import Avatar from '@material-ui/core/Avatar'; | |||
|
|||
| Name | Type | Default | Description | | |||
|:-----|:-----|:--------|:------------| | |||
| <span class="prop-name">alt</span> | <span class="prop-type">string</span> | | Used in combination with `src` or `srcSet` to provide an alt attribute for the rendered `img` element. | |
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.
@oliviertassinari That's the old defaultValue
right? I don't think that adds any value to the markdown. Should be fine with no space at all 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.
:)
This is something I didn't understand in #15115. I imagine that this can cause quite the frustration if people don't have these highlighted in their editor. I wish
no-irregular-whitespace
would catch these.