feat: allow tags with spaces to be linkable
something like 'unstagnation 2023'
This commit is contained in:
parent
4339520f89
commit
a5f8b4ca30
@ -5,7 +5,8 @@ const props = defineProps<{
|
|||||||
highlight?: boolean;
|
highlight?: boolean;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
const isLinkableTag = !props.name.includes(" ");
|
// const isLinkableTag = !props.name.includes(" ");
|
||||||
|
const isLinkableTag = true;
|
||||||
const tagClass = [
|
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",
|
"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 },
|
{ "bg-pink-200 dark:bg-pink-900": props.highlight },
|
||||||
|
Loading…
Reference in New Issue
Block a user