Commit 38baf97a by zhaochengxiang

bug fix

parent a7388118
......@@ -366,7 +366,11 @@ const ImportActionHeader = (props) => {
style={{ marginBottom }}
>
{
editable ? <TextArea rows={1} placeholder='描述数据表包含的业务数据,包括数据内容业务描述、表的适用范围、数据粒度、数据统计口径、数据来源等。对于原始数据表,可以说明加载的源接口信息。' /> : <span className='word-wrap'>{highlightSearchContentByTerms(modelerData?.remark, terms)}</span>
editable ? <TextArea rows={1} placeholder='描述数据表包含的业务数据,包括数据内容业务描述、表的适用范围、数据粒度、数据统计口径、数据来源等。对于原始数据表,可以说明加载的源接口信息。' /> : <div style={{ maxHeight: 70, overflow: 'auto' }}>
<span className='word-wrap'>
{highlightSearchContentByTerms(modelerData?.remark, terms)}
</span>
</div>
}
</Form.Item>
</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