From 1e1f35c55b0a392fa8683c10df9e978d2b17ed00 Mon Sep 17 00:00:00 2001 From: tobinio Date: Sat, 11 Nov 2023 16:56:12 +0100 Subject: [PATCH] fix rendering/calculation of maxProjectsPerRow in homepage --- theseus_gui/src/components/RowDisplay.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theseus_gui/src/components/RowDisplay.vue b/theseus_gui/src/components/RowDisplay.vue index d260f6e54..500fa830e 100644 --- a/theseus_gui/src/components/RowDisplay.vue +++ b/theseus_gui/src/components/RowDisplay.vue @@ -203,8 +203,8 @@ const handleOptionsClick = async (args) => { } } -const maxInstancesPerRow = ref(0) -const maxProjectsPerRow = ref(0) +const maxInstancesPerRow = ref(1) +const maxProjectsPerRow = ref(1) const calculateCardsPerRow = () => { // Calculate how many cards fit in one row