Skip to content

Commit

Permalink
chore: reorder status field
Browse files Browse the repository at this point in the history
  • Loading branch information
katharinawuensche committed Oct 4, 2024
1 parent 06889b4 commit c0cdf83
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pages/detail/person/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,6 @@ function toggleShowAltNames() {
</div>
</template>
<template #base>
<div class="col-span-2 my-2 border-t"></div>
<span>{{ t("Pages.searchviews.person.status") }}:</span>
<span>
{{ data.entity.data?.status }}
</span>
<div class="col-span-2 my-2 border-t"></div>
<span>{{ t("Pages.searchviews.person.born") }}:</span>
<span>
Expand All @@ -171,6 +166,11 @@ function toggleShowAltNames() {
<div class="col-span-2 my-2 border-t"></div>
<span>{{ t("Pages.searchviews.person.gender") }}:</span>
<span>{{ data.entity.data?.gender }}</span>
<div class="col-span-2 my-2 border-t"></div>
<span>{{ t("Pages.searchviews.person.status") }}:</span>
<span>
{{ data.entity.data?.status }}
</span>
<template v-if="Number(data.entity.data?.alternative_label?.length) > 0">
<div class="col-span-2 my-2 border-t"></div>
<span>{{ t("Pages.searchviews.person.alternative_names") }}:</span>
Expand Down

0 comments on commit c0cdf83

Please sign in to comment.