From e611fb1c2ec8f30154a940f07c85c40bea62916e Mon Sep 17 00:00:00 2001 From: Padreug Date: Thu, 4 Jun 2026 23:29:53 +0200 Subject: [PATCH] feat(activities): move scan counts below the camera The Scanned / Sold / Remaining strip moves out of the page header to below the Tabs block. The camera (or scanned list, depending on the active tab) stays prominent at the top; the counts read as a summary footer instead of competing with the title for attention. The stats-error notice follows the counts strip so the warning stays adjacent to the values it affects. --- src/modules/events/views/ScanTicketsPage.vue | 80 ++++++++++---------- 1 file changed, 41 insertions(+), 39 deletions(-) diff --git a/src/modules/events/views/ScanTicketsPage.vue b/src/modules/events/views/ScanTicketsPage.vue index 3c0aced..cd8e8f0 100644 --- a/src/modules/events/views/ScanTicketsPage.vue +++ b/src/modules/events/views/ScanTicketsPage.vue @@ -115,45 +115,6 @@ function fmtTime(iso: string) { {{ event.title }}

- -
-
-

{{ registeredCount }}

-

Scanned

-
-
-

- {{ soldCount ?? '—' }} -

-

Sold

-
-
-

- {{ remainingCount ?? '—' }} -

-

Remaining

-
-
- - - - @@ -228,6 +189,47 @@ function fmtTime(iso: string) { + +
+
+

{{ registeredCount }}

+

Scanned

+
+
+

+ {{ soldCount ?? '—' }} +

+

Sold

+
+
+

+ {{ remainingCount ?? '—' }} +

+

Remaining

+
+
+ + + +