From 15c8f8496034f8a57e44702813c017609e1ee075 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Thu, 16 Oct 2025 22:49:04 +0200 Subject: [PATCH] css styles need units... --- dashboard/src/views/AppsView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/views/AppsView.vue b/dashboard/src/views/AppsView.vue index 432c91355..ca9fd2a9f 100644 --- a/dashboard/src/views/AppsView.vue +++ b/dashboard/src/views/AppsView.vue @@ -246,7 +246,7 @@ function setItemWidth() { itemWidth.value = '100%'; itemSpacing.value = '10px'; } else if (width <= 550) { - itemWidth.value = Number((width-gap*2)/2).toFixed(); + itemWidth.value = Math.floor((width-gap*2)/2) + 'px'; itemSpacing.value = '10px'; } else { itemWidth.value = '190px';