Skip to content
Snippets Groups Projects
Commit dd1b1bbe authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

fix: order timeslots by start ASC

refs #206
parent 397f5519
No related branches found
No related tags found
No related merge requests found
...@@ -110,6 +110,7 @@ const query = computed( ...@@ -110,6 +110,7 @@ const query = computed(
showIds: props.show.id.toString(), showIds: props.show.id.toString(),
start: formattedStartDate.value, start: formattedStartDate.value,
end: formattedEndDate.value, end: formattedEndDate.value,
order: 'start',
}), }),
) )
const { result } = usePaginatedList(timeslotStore.listIsolated, page, limit, { const { result } = usePaginatedList(timeslotStore.listIsolated, page, limit, {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment