diff --git a/src/app/[locale]/(console)/account/registrations/page.tsx b/src/app/[locale]/(console)/account/registrations/page.tsx index 2db7f73..531eba2 100644 --- a/src/app/[locale]/(console)/account/registrations/page.tsx +++ b/src/app/[locale]/(console)/account/registrations/page.tsx @@ -124,7 +124,7 @@ function useData({ [RichAttends[], { count: number }[], (User | Team)[]] >( /* surql */ ` - SELECT * FROM $auth->attends + SELECT *, out.start FROM $auth->attends ORDER BY out.start START $start LIMIT $limit diff --git a/src/app/[locale]/(console)/organisation/[organisation]/events/[id]/[subpage]/attendees.tsx b/src/app/[locale]/(console)/organisation/[organisation]/events/[id]/[subpage]/attendees.tsx index daa35e9..2699e11 100644 --- a/src/app/[locale]/(console)/organisation/[organisation]/events/[id]/[subpage]/attendees.tsx +++ b/src/app/[locale]/(console)/organisation/[organisation]/events/[id]/[subpage]/attendees.tsx @@ -79,7 +79,7 @@ function useData({ /* surql */ ` LET $event = > $event; - SELECT * FROM attends + SELECT *, out.start, in.name FROM attends WHERE $event IN tournament_path ORDER BY out.start, in.name START $start diff --git a/src/app/[locale]/(console)/team/[team]/(container)/registrations/page.tsx b/src/app/[locale]/(console)/team/[team]/(container)/registrations/page.tsx index ef1fe37..817baf4 100644 --- a/src/app/[locale]/(console)/team/[team]/(container)/registrations/page.tsx +++ b/src/app/[locale]/(console)/team/[team]/(container)/registrations/page.tsx @@ -130,7 +130,7 @@ function useData({ /* surql */ ` LET $team = type::thing('team', $slug); - SELECT * FROM $team->attends + SELECT *, out.start FROM $team->attends ORDER BY out.start START $start LIMIT $limit