From 0823b0f0761e9d525f73686263d9e5f6b5b40a79 Mon Sep 17 00:00:00 2001 From: Padreug Date: Thu, 4 Jun 2026 22:44:39 +0200 Subject: [PATCH] feat(activities): My tickets toggle on the calendar view MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds a small filter chip above the month grid that, when on, limits the calendar to events the signed-in user holds at least one paid ticket for (intersecting ownedActivityIds from useOwnedTickets). Hidden when logged out — nothing to own. Left-aligned so it doesn't collide with the fixed top-right hamburger menu. State is local to the page on purpose: narrowing the calendar shouldn't also narrow the feed when the user navigates back. --- .../views/ActivitiesCalendarPage.vue | 38 ++++++++++++++++++- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/src/modules/activities/views/ActivitiesCalendarPage.vue b/src/modules/activities/views/ActivitiesCalendarPage.vue index c56b12a..3c4eccf 100644 --- a/src/modules/activities/views/ActivitiesCalendarPage.vue +++ b/src/modules/activities/views/ActivitiesCalendarPage.vue @@ -1,12 +1,31 @@