Commit 411ef2c3 by zhaochengxiang

bug fix

parent c1090f1a
...@@ -460,7 +460,11 @@ export const ImportActionTable = (props) => { ...@@ -460,7 +460,11 @@ export const ImportActionTable = (props) => {
dataIndex: 'needAttention', dataIndex: 'needAttention',
editable: false, editable: false,
render: (_, record, index) => ( render: (_, record, index) => (
record.needAttention ? <AttentionSvg style={{ width: 15, height: 15 }} /> : <UnAttentionSvg style={{ width: 15, height: 15 }} /> <div className='flex' style={{ alignItems: 'center' }}>
{
record.needAttention ? <AttentionSvg style={{ width: 15, height: 15 }} />: <UnAttentionSvg style={{ width: 15, height: 15 }} />
}
</div>
) )
} }
......
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