release/2.10.1.2401.01

This commit is contained in:
黎永顺 2024-01-25 15:11:35 +08:00
parent c45f1fe066
commit e86e4871d8
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ class ImpStep3 extends Component {
</div>
}
{
!_.isEmpty(importResult.errorData) &&
(!_.isEmpty(importResult.errorNotice) || !_.isEmpty(importResult.errorData)) &&
<WeaTable
columns={[
{
@ -39,7 +39,7 @@ class ImpStep3 extends Component {
dataIndex: "message"
}
]}
dataSource={importResult.errorData} pagination={false}
dataSource={importResult.errorData || importResult.errorNotice} pagination={false}
scroll={{ y: `calc(100vh - 387px)` }}
/>
}