From 6152eeefe30fe6808d924bc9f55ef19f4f889dc7 Mon Sep 17 00:00:00 2001 From: ToBinio <81473300+ToBinio@users.noreply.github.com> Date: Thu, 16 Nov 2023 00:39:17 +0100 Subject: [PATCH] fix rendering/calculation of maxProjectsPerRow in homepage (#872) --- 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