Skip to content

Commit

Permalink
Merge pull request #1083 from NFDI4Chem/issue-#1081
Browse files Browse the repository at this point in the history
fix: hide organism if null
  • Loading branch information
CS76 authored Feb 9, 2024
2 parents 7352381 + 5c7abb5 commit b498f26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/Pages/Public/Project/Show.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</div>
</div>

<div v-if="project.data.species" class="pt-2">
<div v-if="project.data.species && project.data.species.length > 0" class="pt-2">
<h3 class="text-xl font-extrabold text-blue-gray-900">
Organism
</h3>
Expand Down

0 comments on commit b498f26

Please sign in to comment.