Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 21:01:37 +00:00
co-authored by renee-png
parent d33aef6220
commit e865fa198b
+1 -1
View File
@@ -969,7 +969,7 @@ function ListView({ events, onEdit }: { events: Evt[]; onEdit?: (e: Evt) => void
</h4>
<ul className="space-y-2">
{evts.map((e) => (
<EventRow key={`${e.source}-${e.id}`} evt={e} />
<EventRow key={`${e.source}-${e.id}`} evt={e} onEdit={onEdit} />
))}
</ul>
</div>