Skip to content

Commit

Permalink
Merge pull request #182 from os2ulf/feature/OS2UOL-984
Browse files Browse the repository at this point in the history
Feature/os2 uol 984
  • Loading branch information
tutaru99 authored Nov 18, 2024
2 parents c0435d1 + e634cd6 commit eae5b26
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions pages/Search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -399,10 +399,18 @@ const cleanEmptyFilters = () => {
}}
</div>

<div class="search__card-label" v-if="item?.label">
<h4>{{ item?.label }}</h4>
<div
class="search__card-label"
v-if="item?.label || item?.field_name"
>
<h4>
{{
item?.bundle == 'user'
? item?.field_name
: item?.label
}}
</h4>
</div>

<div
class="search__card-description"
v-if="item?.body || item?.field_description"
Expand Down

0 comments on commit eae5b26

Please sign in to comment.