lavoce #11

Merged
bragaz_rexita merged 8 commits from lavoce into main 2025-10-28 09:47:36 +00:00
Showing only changes of commit 6b727c84d8 - Show all commits

View File

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