Skip to content

Commit

Permalink
Usage of nameToDisplay() instead of just the idShort (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
seicke authored Nov 26, 2024
1 parent bc87fb4 commit 02a8ad7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<template #prepend>
<v-icon size="small">mdi-file-outline</v-icon>
</template>
<v-list-item-title>{{ document.idShort }}</v-list-item-title>
<v-list-item-title>{{ nameToDisplay(document) }}</v-list-item-title>
</v-list-item>
</v-expansion-panel-title>
<v-divider v-if="panel === index"></v-divider>
Expand Down Expand Up @@ -228,7 +228,7 @@
<th v-for="idProperty in document.documentIds[0].value" :key="idProperty.idShort">
<v-list-item class="pl-0">
<v-list-item-title class="text-caption">{{
idProperty.idShort
nameToDisplay(idProperty)
}}</v-list-item-title>
</v-list-item>
</th>
Expand Down

0 comments on commit 02a8ad7

Please sign in to comment.