Skip to content

Commit

Permalink
Bumped react-virtualized dep to 7.15.1
Browse files Browse the repository at this point in the history
This renames ._grid ref to .Grid (since it's now an official part of the API).
  • Loading branch information
bvaughn committed Jul 27, 2016
1 parent 6d4c5da commit 9291a33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"react-addons-shallow-compare": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-infinite": "^0.9.2",
"react-virtualized": "^7.15.0",
"react-virtualized": "^7.15.1",
"redux": "^3.5.2",
"rimraf": "^2.5.2",
"sass-loader": "^3.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/.stories/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class FlexTableWrapper extends Component {

return (
<SortableFlexTable
getContainer={(wrappedInstance) => ReactDOM.findDOMNode(wrappedInstance._grid)}
getContainer={(wrappedInstance) => ReactDOM.findDOMNode(wrappedInstance.Grid)}
gridClassName={className}
headerHeight={itemHeight}
height={height}
Expand Down

0 comments on commit 9291a33

Please sign in to comment.