fix: updated row key in triggered alert list table (#6154)

This commit is contained in:
rahulkeswani101 2024-10-14 17:16:44 +05:30 committed by GitHub
parent bf4c792cdb
commit 90ae55264a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -98,7 +98,7 @@ function NoFilterTable({
return (
<ResizeTable
columns={columns}
rowKey="startsAt"
rowKey={(record): string => `${record.startsAt}-${record.fingerprint}`}
dataSource={filteredAlerts}
/>
);