Skip to content

Commit

Permalink
green build
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Oct 25, 2019
1 parent bc05f8f commit e6984b6
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/src/modules/components/MarkdownElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const externs = [
'https://www.amazon.com/',
'https://materialdesignicons.com/',
'https://www.w3.org/',
'https://devexpress.github.io/'
'https://devexpress.github.io/',
];

renderer.link = (href, title, text) => {
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/components/menus/MenuListComposition.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default function MenuListComposition() {
>
Toggle Menu Grow
</Button>
<Popper open={open} anchorEl={anchorRef.current} disablePortal>
<Popper open={open} anchorEl={anchorRef.current} transition disablePortal>
{({ TransitionProps, placement }) => (
<Grow
{...TransitionProps}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,7 @@ export default function CustomPaginationActionsTable() {

const emptyRows = rowsPerPage - Math.min(rowsPerPage, rows.length - page * rowsPerPage);

const handleChangePage = (
event: React.MouseEvent<HTMLButtonElement> | null,
newPage: number,
) => {
const handleChangePage = (event: React.MouseEvent<HTMLButtonElement> | null, newPage: number) => {
setPage(newPage);
};

Expand Down
5 changes: 5 additions & 0 deletions packages/material-ui/src/styles/MuiThemeProvider.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
import React from 'react';
import { ThemeProvider } from '@material-ui/styles';

/**
* @ignore - internal component.
*
* TODO v5: remove
*/
export default function MuiThemeProvider(props) {
if (process.env.NODE_ENV !== 'production') {
console.error(
Expand Down

0 comments on commit e6984b6

Please sign in to comment.