Commit efd84bbc by zhaochengxiang

bug fix

parent b43fdad0
...@@ -152,6 +152,7 @@ const ColumnsItem = ({ value, onChange, data }) => { ...@@ -152,6 +152,7 @@ const ColumnsItem = ({ value, onChange, data }) => {
} }
}} }}
value={(value??[]).map(item => item.metadataColumnId)} value={(value??[]).map(item => item.metadataColumnId)}
style={{ width: '100%' }}
> >
<Row> <Row>
{ {
...@@ -162,7 +163,7 @@ const ColumnsItem = ({ value, onChange, data }) => { ...@@ -162,7 +163,7 @@ const ColumnsItem = ({ value, onChange, data }) => {
lineHeight: '32px', lineHeight: '32px',
}} }}
> >
<Typography.Text style={{ width: 120 }} ellipsis>{item.name}</Typography.Text> <Typography.Text style={{ width: 180 }} ellipsis>{item.name}</Typography.Text>
</Checkbox> </Checkbox>
</Col>) </Col>)
} }
......
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