From c1c8eb649cb05c21272c5f7138c45bda6b8cc23a Mon Sep 17 00:00:00 2001 From: zebrapurring <103900164+zebrapurring@users.noreply.github.com> Date: Sun, 29 Jun 2025 00:58:34 +0200 Subject: [PATCH] fix: display all item labels in the element card (#809) Co-authored-by: zebrapurring <> --- frontend/components/Item/Card.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/components/Item/Card.vue b/frontend/components/Item/Card.vue index e4825e1f..ea7a88dd 100644 --- a/frontend/components/Item/Card.vue +++ b/frontend/components/Item/Card.vue @@ -47,7 +47,7 @@
- +
@@ -76,8 +76,8 @@ } }); - const top3 = computed(() => { - return props.item.labels.slice(0, 3) || []; + const itemLabels = computed(() => { + return props.item.labels || []; }); const props = defineProps({