Skip to content

Commit

Permalink
Merge pull request #139 from ConductionNL/feature/fixed-missing-theme…
Browse files Browse the repository at this point in the history
…s-not-showing

feature/fixed-missing-themes-not-showing
  • Loading branch information
remko48 authored Nov 28, 2024
2 parents 6e83bd9 + d2f8f2d commit 52bd649
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 52bd649

Please sign in to comment.