Browse Source

Merge branch 'fix_row_tag' into 'master'

替换row使用div

See merge request admin-manager/dc!59
zl 4 years ago
parent
commit
fe4b7e4421
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/pages/openplatform/components/FontManage/index.js

+ 2 - 2
src/pages/openplatform/components/FontManage/index.js

@@ -92,9 +92,9 @@ class FontManage extends Component {
           <Spin spinning={this.props.getLoading}>
           <Spin spinning={this.props.getLoading}>
             {
             {
               list.map((item, i) => (
               list.map((item, i) => (
-                <Row style={{ width: '31%', float: 'left' }} >
+                <div style={{ width: '31%', float: 'left' }} >
                   <Checkbox onChange={(e) => checkChange(e, i)} key={item.key} checked={item.value} value={item.key}>{item.key}</Checkbox>
                   <Checkbox onChange={(e) => checkChange(e, i)} key={item.key} checked={item.value} value={item.key}>{item.key}</Checkbox>
-                </Row>
+                </div>
               ))
               ))
             }
             }
           </Spin>
           </Spin>