Commit 9fdfdc4c by zhaochengxiang

bug fix

parent 5c2e96f9
...@@ -85,7 +85,11 @@ const FC = (props) => { ...@@ -85,7 +85,11 @@ const FC = (props) => {
!isCollapse && <Descriptions column={1}> !isCollapse && <Descriptions column={1}>
<Descriptions.Item label={<div style={{ textAlign: 'right', width: 85 }} >维护历史</div>} > <Descriptions.Item label={<div style={{ textAlign: 'right', width: 85 }} >维护历史</div>} >
<div style={{ maxHeight: 110, overflow: 'auto' }}> <div style={{ maxHeight: 110, overflow: 'auto' }}>
{maintenanceDescription} {
(maintenanceRecords||[]).map((record, index) => {
return <div key={index}>{record||''}</div>;
})
}
</div> </div>
</Descriptions.Item> </Descriptions.Item>
</Descriptions> </Descriptions>
......
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