Skip to content

Commit

Permalink
chore(react-grid-material-ui): fix after update to 1.0.0-beta.20 (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
kvet authored Nov 10, 2017
1 parent 6742fdd commit a71a5c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import {
DialogContentText,
DialogTitle,
MenuItem,
Input,
Select,
} from 'material-ui';

Expand Down Expand Up @@ -105,7 +104,7 @@ const LookupEditCellBase = (({
<Select
value={value}
onChange={event => onValueChange(event.target.value)}
input={<Input classes={{ root: classes.inputRoot }} />}
InputClasses={{ root: classes.inputRoot }}
>
{availableValues.map(item => (
<MenuItem key={item} value={item}>{item}</MenuItem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,8 @@ const PageSizeSelectorBase = ({
select: classes.select,
icon: classes.selectIcon,
}}
input={
<Input
disableUnderline
classes={{ root: classes.inputRoot }}
/>
}
InputClasses={{ root: classes.inputRoot }}
input={<Input disableUnderline />}
>
{allowedPageSizes.map(item => (
<MenuItem key={item} value={item}>
Expand Down

0 comments on commit a71a5c5

Please sign in to comment.