forked from DebaucheryLibrarian/traxxx
Added tag photos.
This commit is contained in:
@@ -36,7 +36,7 @@
|
||||
>Log in</button>
|
||||
|
||||
<router-link
|
||||
to="/signup"
|
||||
:to="{ name: 'signup', query: { ref: $route.query.ref } }"
|
||||
class="link link-external signup"
|
||||
>Sign up</router-link>
|
||||
</template>
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
>Sign up</button>
|
||||
|
||||
<router-link
|
||||
to="/login"
|
||||
:to="{ name: 'login', query: { ref: $route.query.ref } }"
|
||||
class="link link-external login"
|
||||
>Log in</router-link>
|
||||
</template>
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
<router-link
|
||||
v-else
|
||||
to="/login"
|
||||
:to="{ name: 'login', query: { ref: $route.path } }"
|
||||
class="menu-item"
|
||||
@click.stop
|
||||
>
|
||||
|
||||
@@ -21,14 +21,20 @@
|
||||
>
|
||||
<h4 class="stash-name">{{ stash.name }}</h4>
|
||||
|
||||
<ul class="stash-section stash-scenes nolist">
|
||||
<ul
|
||||
v-if="stash.scenes?.length > 0"
|
||||
class="stash-section stash-scenes nolist"
|
||||
>
|
||||
<li
|
||||
v-for="item in stash.scenes"
|
||||
:key="item.id"
|
||||
><Scene :release="item.scene" /></li>
|
||||
</ul>
|
||||
|
||||
<ul class="stash-section stash-actors nolist">
|
||||
<ul
|
||||
v-if="stash.actors?.length > 0"
|
||||
class="stash-section stash-actors nolist"
|
||||
>
|
||||
<li
|
||||
v-for="item in stash.actors"
|
||||
:key="item.id"
|
||||
@@ -88,6 +94,7 @@ export default {
|
||||
}
|
||||
|
||||
.stash {
|
||||
width: 100%;
|
||||
background: var(--background);
|
||||
margin: 0 0 1rem 0;
|
||||
box-shadow: 0 0 3px var(--shadow-weak);
|
||||
|
||||
Reference in New Issue
Block a user