Skip to content

Commit

Permalink
fixed missing theme from not showing
Browse files Browse the repository at this point in the history
  • Loading branch information
remko48 committed Nov 28, 2024
1 parent 6e83bd9 commit d2f8f2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/publications/PublicationDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ import { ref } from 'vue'
</div>
</BTab>
<BTab title="Thema's">
<div v-if="filteredThemes?.length">
<div v-if="filteredThemes?.length || missingThemes?.length">
<NcListItem v-for="(value, key, i) in filteredThemes"
:key="`${value.id}${i}`"
:name="value.title"
Expand Down Expand Up @@ -382,7 +382,7 @@ import { ref } from 'vue'
</template>
</NcListItem>
</div>
<div v-if="!filteredThemes?.length" class="tabPanel">
<div v-if="!filteredThemes?.length && !missingThemes?.length" class="tabPanel">
Geen thema's gevonden
</div>
</BTab>
Expand Down

0 comments on commit d2f8f2d

Please sign in to comment.