fix rendering/calculation of maxProjectsPerRow in homepage (#872)

This commit is contained in:
ToBinio 2023-11-16 00:39:17 +01:00 committed by GitHub
parent b8b1668fee
commit 6152eeefe3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -203,8 +203,8 @@ const handleOptionsClick = async (args) => {
} }
} }
const maxInstancesPerRow = ref(0) const maxInstancesPerRow = ref(1)
const maxProjectsPerRow = ref(0) const maxProjectsPerRow = ref(1)
const calculateCardsPerRow = () => { const calculateCardsPerRow = () => {
// Calculate how many cards fit in one row // Calculate how many cards fit in one row