diff --git a/assets/components/ContainerTable.vue b/assets/components/ContainerTable.vue index b69f7644..9f8e51a2 100644 --- a/assets/components/ContainerTable.vue +++ b/assets/components/ContainerTable.vue @@ -68,7 +68,7 @@ const { containers, perPage = 15 } = defineProps<{ perPage?: number; }>(); const sortField: Ref = ref("created"); -const direction = ref<1 | -1>(1); +const direction = ref<1 | -1>(-1); const sortedContainers = computedWithControl( () => [containers.length, sortField.value, direction.value], () => {