Skip to content
Snippets Groups Projects
Commit 294c446a authored by xaralis's avatar xaralis
Browse files

fix: title not rendered for whole feature collection detail, only for indivudal bits

parent 4f6a81f1
No related branches found
No related tags found
2 merge requests!547fix: title not rendered for whole feature collection detail, only for indivudal bits,!546fix: title not rendered for whole feature collection detail, only for indivudal bits
Pipeline #8449 passed
...@@ -772,13 +772,12 @@ const GeoFeatureCollection = Vue.component("GeoFeatureCollection", { ...@@ -772,13 +772,12 @@ const GeoFeatureCollection = Vue.component("GeoFeatureCollection", {
</div> </div>
<div class="card-headline flex items-center mb-2"> <div class="card-headline flex items-center mb-2">
<span v-if="currentItem.index" class="rounded-full inline-flex items-center justify-center bg-grey-125 font-bold text-center text-sm w-6 h-6 mr-2">{{ currentItem.index }}</span> <span v-if="currentItem.index" class="rounded-full inline-flex items-center justify-center bg-grey-125 font-bold text-center text-sm w-6 h-6 mr-2">{{ currentItem.index }}</span>
<span>{{ currentItem.collectionTitle }}</span> <span>{{ currentItem.title }}</span>
</div> </div>
<div class="card-body-text space-y-4"> <div class="card-body-text space-y-4">
<div v-if="currentItem.collectionDescription">{{ currentItem.collectionDescription }}</div> <div v-if="currentItem.collectionDescription">{{ currentItem.collectionDescription }}</div>
<div v-if="currentItem.selfTitle"> <div v-if="currentItem.selfTitle && currentItem.description">
<h2 class="head-allcaps-4xs">{{ currentItem.selfTitle }}</h2> <h2 class="head-allcaps-4xs">{{ currentItem.selfTitle }}</h2>
<div v-if="currentItem.description">{{ currentItem.description }}</div> <div v-if="currentItem.description">{{ currentItem.description }}</div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment