fix bug with multiple alerts not dismissing

The alerts for multiple events involving slots had non-unique ids and were failing to dismiss.
This commit is contained in:
Eric 2024-06-27 12:01:33 +10:00
parent f1b97c3f3c
commit 0ea0f60197
No known key found for this signature in database

View File

@ -13,7 +13,7 @@ const alerts = defineModel()
:key="event + blockNumber + requestId"
>
<AlertWithContent
:id="event + blockNumber + requestId"
:id="event + blockNumber + requestId + slotIdx"
:title="event"
:type="type"
:btn-more-url="router.resolve({ path: `/request/${requestId}`, query: route.query }).href"