Browse Source

Fix gutter PropTypes

pull/8125/head
afc163 7 years ago
parent
commit
05c56553a2
  1. 2
      components/grid/row.tsx

2
components/grid/row.tsx

@ -54,7 +54,7 @@ export default class Row extends React.Component<RowProps, {
justify: PropTypes.string,
className: PropTypes.string,
children: PropTypes.node,
gutter: PropTypes.number,
gutter: PropTypes.oneOfType([PropTypes.object, PropTypes.number]),
prefixCls: PropTypes.string,
};
state = {

Loading…
Cancel
Save