pull/97/head
lyc8503 2025-03-25 17:41:44 +08:00
commit 074fabfe05
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ export default function DetailBar({
setModalTitle(`🚨 ${monitor.name} incidents at ${new Date(dayStart * 1000).toLocaleDateString()}`)
setModelContent(
<>
{incidentReasons.map((reason) => (<div>{reason}</div>))}
{incidentReasons.map((reason, index) => (<div key={index}>{reason}</div>))}
</>
)
setModalOpened(true)