diff --git a/package.json b/package.json index 437edb1..32a31f6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-grid-system", - "version": "3.0.6", + "version": "3.0.7", "description": "A no CSS Bootstrap-like responsive grid system for React.", "main": "./build/index.js", "scripts": { diff --git a/src/grid/Row/index.jsx b/src/grid/Row/index.jsx index 6162f22..3901fcf 100644 --- a/src/grid/Row/index.jsx +++ b/src/grid/Row/index.jsx @@ -56,10 +56,10 @@ export default class Row extends React.Component { render = () => { const { - children, style, align, grow, debug, ...otherProps + children, style, align, grow, debug, nogutter, ...otherProps } = this.props; const theStyle = getStyle({ - gutterWidth: this.props.nogutter ? 0 : this.context.gutterWidth, + gutterWidth: nogutter ? 0 : this.context.gutterWidth, align, grow, debug,