Added studios to filters and scene page.

This commit is contained in:
2024-09-03 05:56:14 +02:00
parent c3362e614e
commit 60c7e2a876
12 changed files with 108 additions and 19 deletions

View File

@@ -109,6 +109,16 @@
class="row tags nolist"
:title="scene.tags.map((tag) => tag.name).join(', ')"
>
<li
v-if="scene.shootId"
class="tag shoot"
>
<Link
:href="scene.studio ? `/studio/${scene.studio.slug}` : null"
class="nolink"
>{{ scene.shootId }}</Link>
</li>
<li
v-for="tag in scene.tags"
:key="`tag-${scene.id}-${tag.id}`"
@@ -304,4 +314,10 @@ const favorited = ref(props.scene.stashes.some((sceneStash) => sceneStash.id ===
color: var(--glass-strong-10);
font-size: .75rem;
}
.shoot {
color: var(--primary);
font-size: .75rem;
font-weight: bold;
}
</style>