Skip to content

Commit

Permalink
Small improvements to Mapping view
Browse files Browse the repository at this point in the history
  • Loading branch information
stefandesu committed Jul 17, 2024
1 parent 8ad4875 commit 9fb4763
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/views/Mapping.vue
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,8 @@
:dropzone="false"
:item-list-options="{ rowMode: false }" />
<item-details-tabs
:item="state.getItem(jskos.conceptsOfMapping(mapping, 'from')[0])" />
:item="state.getItem(jskos.conceptsOfMapping(mapping, 'from')[0])"
:flat="true" />
</div>
<div>
<h4>
Expand Down Expand Up @@ -209,7 +210,8 @@
:item-list-options="{ rowMode: false }" />
<item-details-tabs
v-if="jskos.conceptsOfMapping(mapping, 'to').length"
:item="state.getItem(jskos.conceptsOfMapping(mapping, 'to')[targetConceptIndex])" />
:item="state.getItem(jskos.conceptsOfMapping(mapping, 'to')[targetConceptIndex])"
:flat="true" />
<span v-else>
{{ $t("mapping.noTargetConcepts") }}
</span>
Expand Down Expand Up @@ -369,3 +371,9 @@ const mappingsOfConcordanceLink = computed(() => {
color: #f3f0f0;
}
</style>
<style>
.jskos-vue-itemDetails-name {
font-size: 20px;
}
</style>

0 comments on commit 9fb4763

Please sign in to comment.