From ee2819d826f57348466eddf6a4b6fa14cc1cd2b7 Mon Sep 17 00:00:00 2001 From: upsiflu Date: Sat, 14 Dec 2024 14:48:17 +0100 Subject: [PATCH] fix(ui): repair link in card with `to` route (whole card as link) --- front/src/components/ui/Card.vue | 42 ++++++++++++++++---------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/front/src/components/ui/Card.vue b/front/src/components/ui/Card.vue index b7c278853..8569111a1 100644 --- a/front/src/components/ui/Card.vue +++ b/front/src/components/ui/Card.vue @@ -25,8 +25,6 @@ const image = typeof props.image === 'string' ? { src: props.image } : props.ima const isExternalLink = computed(() => { return typeof props.to === 'string' && props.to.startsWith('http') }) - -const c = useCssModule()