From c8930aee3e400b92fc58009897ba2a32d8462b13 Mon Sep 17 00:00:00 2001 From: Padreug Date: Wed, 10 Jun 2026 23:28:20 +0200 Subject: [PATCH 1/2] feat(activities): show event name (linked) on My tickets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace the "Event: <8-char-id>…" placeholder with the actual event title, sourced from the shared events store, and wrap it in a RouterLink to the event detail page. Card title truncates so long names don't push the per-event ticket-count badge out of the row. Subscribe to the events feed on mount so titles resolve as relay events stream in — the user can land on My tickets directly from a purchase flow without having to visit /events first to populate the store. Falls back to the old short-id label until the event arrives (or if it's been deleted upstream). Co-Authored-By: Claude Opus 4.7 (1M context) --- src/modules/events/views/MyTicketsPage.vue | 66 ++++++++++++++++++++-- 1 file changed, 60 insertions(+), 6 deletions(-) diff --git a/src/modules/events/views/MyTicketsPage.vue b/src/modules/events/views/MyTicketsPage.vue index 1947794..5ddaea9 100644 --- a/src/modules/events/views/MyTicketsPage.vue +++ b/src/modules/events/views/MyTicketsPage.vue @@ -1,6 +1,9 @@