Skip to content

Commit

Permalink
fix rendering/calculation of maxProjectsPerRow in homepage (#872)
Browse files Browse the repository at this point in the history
  • Loading branch information
ToBinio authored Nov 15, 2023
1 parent b8b1668 commit 6152eee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions theseus_gui/src/components/RowDisplay.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6152eee

Please sign in to comment.