Added tag photos.

This commit is contained in:
DebaucheryLibrarian
2021-03-16 02:31:23 +01:00
parent 398161b03b
commit 3bebf5bf51
76 changed files with 38 additions and 22 deletions

View File

@@ -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>

View File

@@ -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>

View File

@@ -9,7 +9,7 @@
<router-link
v-else
to="/login"
:to="{ name: 'login', query: { ref: $route.path } }"
class="menu-item"
@click.stop
>

View File

@@ -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);

View File

@@ -36,7 +36,7 @@ const routes = [
},
{
path: '/signup',
name: 'singup',
name: 'signup',
component: Signup,
},
{