Skip to content

Commit

Permalink
fix: place.name -> place.label
Browse files Browse the repository at this point in the history
  • Loading branch information
katharinawuensche committed Sep 16, 2024
1 parent ab3883c commit d733cf8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pages/detail/place/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const flattenedRelations = computed(() => {
<DetailPage v-else model="Place">
<template #head>
<h1 class="text-2xl text-neutral-800 xl:my-3 xl:text-4xl dark:text-inherit">
{{ data.entity.data?.name }}
{{ data.entity.data?.label }}
</h1>
<div class="flex justify-between">
<div>
Expand Down
2 changes: 1 addition & 1 deletion pages/search/places.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const endpoint = $api["apis_api_apis_ontology.place_list"];
const columns = [
{
key: "name",
key: "label",
label: t("Pages.searchviews.place.name"),
sortable: true,
},
Expand Down

0 comments on commit d733cf8

Please sign in to comment.