We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77100ae commit 3e73d15Copy full SHA for 3e73d15
src/views/Boards.vue
@@ -10,7 +10,9 @@
10
<router-link :to="{ name: 'Watchlist' }" class="button">Watchlist</router-link>
11
<router-link :to="{ name: 'ThreadsPostedIn' }" class="button">Threads Posted In</router-link>
12
</div>
13
-
+ <div v-if="!boardData?.data?.boards?.length">
14
+ <h4 class="centered-text">There are currently no boards, an administrator must add boards before threads can be created</h4>
15
+ </div>
16
<div v-if="boardData.data">
17
<div class="category" v-for="cat in boardData.data.boards" :key="cat.id">
18
<!-- Category Title -->
0 commit comments