diff --git a/src/client/components/Grid/GridItem.jsx b/src/client/components/Grid/GridItem.jsx index a0dcefedc..98f95f870 100644 --- a/src/client/components/Grid/GridItem.jsx +++ b/src/client/components/Grid/GridItem.jsx @@ -17,9 +17,17 @@ import PropTypes from 'prop-types' class GridItem extends React.Component { render () { - const { width, extraClass } = this.props + const { width, xLargeWidth, extraClass } = this.props return ( -
+
{this.props.children}
) @@ -28,6 +36,7 @@ class GridItem extends React.Component { GridItem.propTypes = { width: PropTypes.string.isRequired, + xLargeWidth: PropTypes.string, extraClass: PropTypes.string, style: PropTypes.object, children: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.node), PropTypes.node]).isRequired diff --git a/src/client/containers/Accounts/index.jsx b/src/client/containers/Accounts/index.jsx index ab1ddc8a9..f35ff49bf 100644 --- a/src/client/containers/Accounts/index.jsx +++ b/src/client/containers/Accounts/index.jsx @@ -126,7 +126,7 @@ class AccountsContainer extends React.Component { const isAgent = user.getIn(['role', 'isAgent']) || false const isDeleted = user.get('deleted') || false return ( - +