Skip to content

Commit

Permalink
Update columns of person table
Browse files Browse the repository at this point in the history
  • Loading branch information
katharinawuensche committed Jul 23, 2024
1 parent b8bd355 commit 1892d3c
Showing 1 changed file with 17 additions and 12 deletions.
29 changes: 17 additions & 12 deletions pages/search/persons.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,25 @@ const columns = [
sortable: true,
},
{
key: "start_date_written",
label: t("Pages.searchviews.person.start_date"),
sortable: true,
},
{
key: "end_date_written",
label: t("Pages.searchviews.person.end_date"),
sortable: true,
},
{
key: "gender",
label: t("Pages.searchviews.person.gender"),
key: "alternative_label",
label: t("Pages.searchviews.person.alternative_names"),
sortable: true,
},
// {
// key: "start_date_written",
// label: t("Pages.searchviews.person.start_date"),
// sortable: true,
// },
// {
// key: "end_date_written",
// label: t("Pages.searchviews.person.end_date"),
// sortable: true,
// },
// {
// key: "gender",
// label: t("Pages.searchviews.person.gender"),
// sortable: true,
// },
];
</script>

Expand Down

0 comments on commit 1892d3c

Please sign in to comment.