You've already forked AstralRinth
forked from didirus/AstralRinth
This fixes a bug where the "Submit for approval" button was always present no matter the project status. These things are finnicky.
This commit is contained in:
@@ -9,7 +9,11 @@
|
|||||||
Back
|
Back
|
||||||
</nuxt-link>
|
</nuxt-link>
|
||||||
<button
|
<button
|
||||||
v-if="mod.status === 'rejected' || 'draft' || 'unlisted'"
|
v-if="
|
||||||
|
mod.status === 'rejected' ||
|
||||||
|
mod.status === 'draft' ||
|
||||||
|
mod.status === 'unlisted'
|
||||||
|
"
|
||||||
title="Submit for approval"
|
title="Submit for approval"
|
||||||
class="button column"
|
class="button column"
|
||||||
:disabled="!this.$nuxt.$loading"
|
:disabled="!this.$nuxt.$loading"
|
||||||
|
|||||||
Reference in New Issue
Block a user