Added studios to filters and scene page.
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user