Commit 09866617 by zhaochengxiang

bug fix

parent b47c82dd
...@@ -157,8 +157,8 @@ const VersionCompare = (props) => { ...@@ -157,8 +157,8 @@ const VersionCompare = (props) => {
return ( return (
<div className='model-version-compare'> <div className='model-version-compare'>
<Form> <Form>
<Row gutter={15}> <Row>
<Col span={12}> <Col flex='1' style={{ overflow: 'hidden' }}>
<Form.Item label='基线版本' style={{ marginBottom: 0 }}> <Form.Item label='基线版本' style={{ marginBottom: 0 }}>
<Select loading={loading} value={basicVersion} style={{ width: '100%' }} onChange={onBasicChange} > <Select loading={loading} value={basicVersion} style={{ width: '100%' }} onChange={onBasicChange} >
{ {
...@@ -185,7 +185,9 @@ const VersionCompare = (props) => { ...@@ -185,7 +185,9 @@ const VersionCompare = (props) => {
</Select> </Select>
</Form.Item> </Form.Item>
</Col> </Col>
<Col span={12}> <Col flex='15px' >
</Col>
<Col flex='1' style={{ overflow: 'hidden' }}>
<Form.Item label='增量版本' style={{ marginBottom: 0 }}> <Form.Item label='增量版本' style={{ marginBottom: 0 }}>
<Select value={incVersion} style={{ width: '100%' }} disabled={basicVersion===''} onChange={onIncChange}> <Select value={incVersion} style={{ width: '100%' }} disabled={basicVersion===''} onChange={onIncChange}>
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment