Fix zoom on graphs

pull/580/head
Andrew Watkins 2016-11-17 09:49:30 -08:00
parent b1a295dcb8
commit 7f9e06c1b0
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ export const LayoutRenderer = React.createClass({
render() {
return (
<GridLayout layout={this.state.layout} isDraggable={false} isResizable={false} cols={12} rowHeight={90} width={1200}>
<GridLayout useCSSTransforms={false} layout={this.state.layout} isDraggable={false} isResizable={false} cols={12} rowHeight={90} width={1200}>
{this.generateGraphs()}
</GridLayout>
);