Skip to content

Commit

Permalink
fix(grid): justifyContent instead of justify
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaac Johnson committed Oct 21, 2021
1 parent 55c3633 commit 54db48b
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 @@ -395,7 +395,7 @@ class TableFilter extends React.Component {
</div>
<div className={classes.filtersSelected} />
</div>
<Grid container direction="row" justify="flex-start" alignItems="center" spacing={4}>
<Grid container direction="row" justifyContent="flex-start" alignItems="center" spacing={4}>
{columns.map((column, index) => {
if (column.filter) {
const filterType = column.filterType || options.filterType;
Expand Down

0 comments on commit 54db48b

Please sign in to comment.