Skip to content

Commit

Permalink
adjust resizableColumns to default off
Browse files Browse the repository at this point in the history
  • Loading branch information
gregnb committed Aug 19, 2018
1 parent a47c003 commit 7de289a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ The component accepts the following props:
|**`textLabels `**|object||User provided labels to localize text
|**`pagination`**|boolean|true|Enable/disable pagination
|**`selectableRows`**|boolean|true|Enable/disable row selection
|**`resizableColumns`**|boolean|true|Enable/disable resizable columns
|**`resizableColumns`**|boolean|false|Enable/disable resizable columns
|**`customToolbar`**|function||Render a custom toolbar
|**`customToolbarSelect`**|function||Render a custom selected rows toolbar
|**`customFooter`**|function||Render a custom table footer. `function(count, page, rowsPerPage, changeRowsPerPage, changePage) => string`|` React Component`
Expand Down
2 changes: 1 addition & 1 deletion src/MUIDataTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class MUIDataTable extends React.Component {
filterType: "checkbox",
pagination: true,
textLabels,
resizableColumns: true,
resizableColumns: false,
selectableRows: true,
caseSensitive: false,
rowHover: true,
Expand Down

0 comments on commit 7de289a

Please sign in to comment.