src/Frontend/src/components/ClipItem.vue
+4
-5
diff --git a/src/Frontend/src/components/ClipItem.vue b/src/Frontend/src/components/ClipItem.vue
index de1986d..c8c01ec 100644
@@ -39,7 +39,10 @@ onUnmounted(() => observer?.disconnect());
<div v-if="clip.caption" class="caption">
<p>
<span>{{ clip.caption }}</span>
<span v-for="tag in clip.tags" class="tag">#{{ tag }}</span>
<template v-for="tag in clip.tags">
{{ " " }}
<span>#{{ tag }}</span>
</template>
</p>
</div>
</div>
@@ -69,8 +72,4 @@ video {
color: #ffffff;
line-height: 1.4;
}
.tag {
margin-inline-start: 1ch;
}
</style>