Skip to content

Commit

Permalink
Fix issue with custom component width
Browse files Browse the repository at this point in the history
  • Loading branch information
pkmnct committed Jul 24, 2019
1 parent 6e973d2 commit 14aec9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TableFilter.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ class TableFilter extends React.Component {
return (
<GridListTile key={index} cols={1}>
<div className={classes.selectRoot}>
<FormControl className={classes.selectFormControl} key={index}>
<FormControl className={classes.selectFormControl} key={index} fullWidth>
<InputLabel htmlFor={column.name}>{column.label}</InputLabel>
<Select
value={filterList[index].toString() || textLabels.all}
Expand Down

0 comments on commit 14aec9a

Please sign in to comment.