integration history event alarm

This commit is contained in:
2025-10-28 12:24:25 +07:00
parent 9a483aa873
commit 6b727c84d8

View File

@@ -22,18 +22,18 @@ const ListHistoryEvent = memo(function ListHistoryEvent(props) {
},
{
title: 'Tag Name',
dataIndex: 'tag_name',
key: 'tag_name',
dataIndex: 'tagname',
key: 'tagname',
width: '40%',
},
{
title: 'Description',
dataIndex: 'condition',
key: 'condition',
dataIndex: 'description',
key: 'description',
width: '20%',
render: (_, record) => (
<Button type="text" style={{ backgroundColor: record.status_color, width: '100%' }}>
{record.condition}
{record.description}
</Button>
),
},