You've already forked AstralRinth
forked from didirus/AstralRinth
Miscellaneous fixes relating to statuses, et al (#920)
This commit is contained in:
@@ -132,10 +132,7 @@
|
||||
<span class="title">Settings</span>
|
||||
</NuxtLink>
|
||||
<NuxtLink
|
||||
v-if="
|
||||
$auth.user.role === 'moderator' ||
|
||||
$auth.user.role === 'admin'
|
||||
"
|
||||
v-if="$tag.staffRoles.includes($auth.user.role)"
|
||||
class="item button-transparent"
|
||||
to="/moderation"
|
||||
>
|
||||
@@ -297,10 +294,7 @@
|
||||
<span class="dropdown-item__text">Settings</span>
|
||||
</NuxtLink>
|
||||
<NuxtLink
|
||||
v-if="
|
||||
$auth.user &&
|
||||
($auth.user.role === 'moderator' || $auth.user.role === 'admin')
|
||||
"
|
||||
v-if="$auth.user && $tag.staffRoles.includes($auth.user.role)"
|
||||
class="iconified-button raised-button"
|
||||
to="/moderation"
|
||||
>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<div class="main">
|
||||
<div class="error">
|
||||
<Logo404 v-if="error.statusCode === 404" />
|
||||
<h1 v-else>An error occured!</h1>
|
||||
<h1 v-else>An error occurred!</h1>
|
||||
<p>{{ error.message }}</p>
|
||||
<div class="button-group">
|
||||
<nuxt-link to="/" class="iconified-button raised-button brand-button">
|
||||
|
||||
Reference in New Issue
Block a user