diff --git a/components/Tag.vue b/components/Tag.vue index 5ca14c4..ce6d724 100644 --- a/components/Tag.vue +++ b/components/Tag.vue @@ -5,7 +5,8 @@ const props = defineProps<{ highlight?: boolean; }>(); -const isLinkableTag = !props.name.includes(" "); +// const isLinkableTag = !props.name.includes(" "); +const isLinkableTag = true; const tagClass = [ "inline-block text-xs rounded-lg py-1 px-2 mt-1 mr-1 transition border border-pink-200 dark:border-pink-900 border-2 font-medium", { "bg-pink-200 dark:bg-pink-900": props.highlight },