From 6746d083047b14725f6abd6c52b79dd0e828ab3d Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Fri, 26 Jan 2024 12:16:00 +0100 Subject: [PATCH] fix only showing one queued & building package --- frontend/src/components/CurrentlyBuilding.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/CurrentlyBuilding.vue b/frontend/src/components/CurrentlyBuilding.vue index 121cca9..00705cc 100644 --- a/frontend/src/components/CurrentlyBuilding.vue +++ b/frontend/src/components/CurrentlyBuilding.vue @@ -157,7 +157,7 @@ const getBuiltPackages = () => { } const getBuildingPackages = () => { - fetch('https://api.alhp.dev/packages?limit=1&offset=0&status=building', { + fetch('https://api.alhp.dev/packages?limit=0&offset=0&status=building', { method: 'GET' }) .then((response) => { @@ -174,7 +174,7 @@ const getBuildingPackages = () => { } const getQueuedPackages = () => { - fetch('https://api.alhp.dev/packages?limit=1&offset=0&status=queued', { + fetch('https://api.alhp.dev/packages?limit=0&offset=0&status=queued', { method: 'GET' }) .then((response) => {