diff --git a/front/src/components/ui/Link.vue b/front/src/components/ui/Link.vue index 64caa704a..be5e2f76a 100644 --- a/front/src/components/ui/Link.vue +++ b/front/src/components/ui/Link.vue @@ -13,6 +13,8 @@ const { to, icon, inline, round, ...otherProps } = defineProps { return typeof to === 'string' && to.startsWith('http') }) + +const isIconOnly = computed(() => !!icon)