Skip to content

Commit

Permalink
ItemView: Small adjustment to mappings display
Browse files Browse the repository at this point in the history
  • Loading branch information
stefandesu committed Jun 28, 2024
1 parent b83c38e commit 411bf15
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/client/views/ItemView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,9 @@ const topConcepts = computed(() => {
<li
v-for="(mapping, index) in concept.mappings"
:key="index">
{{ (jskos.mappingTypeByType(mapping.type) || jskos.defaultMappingType).notation[0] }}
<auto-link
<span :title="jskos.prefLabel(jskos.mappingTypeByType(mapping.type) || jskos.defaultMappingType)">
{{ (jskos.mappingTypeByType(mapping.type) || jskos.defaultMappingType).notation[0] }}
</span>&nbsp;<auto-link
v-for="c in jskos.conceptsOfMapping(mapping)"
:key="c?.uri"
:href="c?.uri" />
Expand Down

0 comments on commit 411bf15

Please sign in to comment.