Skip to content

Commit

Permalink
fix: make street optional
Browse files Browse the repository at this point in the history
  • Loading branch information
tjorbo committed Apr 30, 2024
1 parent 4e8917c commit d1b46ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/details/Details.vue
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@
</template>
<template #text>
<div class="text-primary">
{{ institution.address.street }}<br>
<div v-if="institution.address.street">{{ institution.address.street }}<br></div>
{{ institution.address.zip }} {{ institution.address.place }}
</div>
</template>
Expand Down

0 comments on commit d1b46ab

Please sign in to comment.