mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-14 04:35:58 +08:00
fix: updated row key in triggered alert list table (#6154)
This commit is contained in:
parent
bf4c792cdb
commit
90ae55264a
@ -98,7 +98,7 @@ function NoFilterTable({
|
|||||||
return (
|
return (
|
||||||
<ResizeTable
|
<ResizeTable
|
||||||
columns={columns}
|
columns={columns}
|
||||||
rowKey="startsAt"
|
rowKey={(record): string => `${record.startsAt}-${record.fingerprint}`}
|
||||||
dataSource={filteredAlerts}
|
dataSource={filteredAlerts}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user