Skip to content

Commit

Permalink
[core] Batch small changes (#24224)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Jan 4, 2021
1 parent 0cb2bcd commit c19917c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/1.bug.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ labels: 'status: needs triage'
Provide a link to a live example (you can use codesandbox.io) and an unambiguous set of steps to reproduce this bug.
Include code to reproduce, if relevant (which it most likely is).
You should use the official codesandbox template as a starting point: https://material-ui.com/r/issue-template
You should use the official codesandbox template as a starting point: https://material-ui.com/r/issue-template-next
If you have an issue concerning TypeScript please start from this TypeScript playground: https://material-ui.com/r/ts-issue-template
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export default function LandingPage(props) {
<AppFrame>
<div className={classes.root}>
<Head />
<main id="main-content" tabIndex="-1">
<main id="main-content" tabIndex={-1}>
<div className={classes.hero}>
<Container maxWidth="md" className={classes.content}>
<img src="/static/logo_raw.svg" alt="" className={classes.logo} />
Expand Down
3 changes: 2 additions & 1 deletion docs/public/_redirects
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ https://material-ui.dev/* https://material-ui.com/:splat 301!
/r/caveat-with-refs-guide /guides/composition/#caveat-with-refs 302
/r/pseudo-classes-guide /customization/components/#pseudo-classes 302
/r/input-component-ref-interface /components/text-fields/#integration-with-3rd-party-input-libraries 302
/r/issue-template https://codesandbox.io/s/material-ui-issue-dh2yh
/r/issue-template-next https://codesandbox.io/s/material-ui-issue-dh2yh
/r/issue-template-latest https://codesandbox.io/s/material-ui-issue-latest-931qt
/r/ts-issue-template https://www.typescriptlang.org/play/#code/JYWwDg9gTgLgBAKjgQwM5wEoFNkGN4BmUEIcA5FDvmQNwBQokscA3nXHAPSdwwAWWOLhKQAdllEx0ATwgBXOHNRYAJnQC+cIiXIABEMhhYowZABsAtHOCdhlMnToE5o-MAii4AESwgIACgBKVnYuHgBNeSghCBUsDSA 302
/r/custom-component-variants /customization/components/#adding-new-component-variants
/r/x-license https://material-ui.com/store/items/material-ui-x/
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/company/contact/contact.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ Please choose a topic below related to your inquiry:
- Email enquiries: [contact@material-ui.com](mailto:contact@material-ui.com)
- Our address:<br /><br />
**Material-UI SAS**<br />
128 rue de la boetie<br />
128 Rue La Boétie<br />
75008 Paris<br />
France
2 changes: 1 addition & 1 deletion packages/material-ui/src/Breadcrumbs/Breadcrumbs.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ describe('<Breadcrumbs />', () => {
it('should expand when `BreadcrumbCollapsed` is clicked', () => {
const { getAllByRole, getByRole, getByText } = render(
<Breadcrumbs>
<span tabIndex="-1">first</span>
<span tabIndex={-1}>first</span>
<span>second</span>
<span>third</span>
<span>fourth</span>
Expand Down
2 changes: 1 addition & 1 deletion packages/material-ui/src/Popover/Popover.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ describe('<Popover />', () => {
});

it('should not apply the auto prop if not supported', () => {
const TransitionComponent = React.forwardRef((_, ref) => <div ref={ref} tabIndex="-1" />);
const TransitionComponent = React.forwardRef((_, ref) => <div ref={ref} tabIndex={-1} />);
const wrapper = mount(
<Popover {...defaultProps} open TransitionComponent={TransitionComponent}>
<div />
Expand Down

0 comments on commit c19917c

Please sign in to comment.