Skip to content

Commit

Permalink
Fix type species string
Browse files Browse the repository at this point in the history
  • Loading branch information
José Luis Pereira committed Aug 9, 2022
1 parent 6e564b1 commit a08c325
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/modules/otus/components/TypeDesignation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ const props = defineProps({
const typeSpecies = ref({})
const typeSpeciesLabel = computed(() => [
typeSpecies.value.subject_object_tag || '',
typeSpecies.value.subject_status_tag || ''
typeSpecies.value.subject_status_tag || '',
typeSpecies.value.object_object_tag || ''
].join(' '))
watch(
Expand Down

0 comments on commit a08c325

Please sign in to comment.