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 a945d0c commit 5369dafCopy full SHA for 5369daf
src/views/Boards.vue
@@ -1,7 +1,7 @@
1
<template>
2
<div class="main">
3
<p v-if="boardData.error"><strong>{{boardData.error}}</strong></p>
4
- <recent-threads :threads="boardData.data.threads"></recent-threads>
+ <recent-threads v-if="boardData && boardData.data" :threads="boardData.data.threads"></recent-threads>
5
6
<div v-if="!loggedIn" class="dashboard-actions">
7
<a href="" class="button" @click.prevent="showRegister = true">Create an Account</a>
0 commit comments