Skip to content

Commit

Permalink
do not use viewer directly
Browse files Browse the repository at this point in the history
  • Loading branch information
aarongundel committed Dec 23, 2024
1 parent e2d0fe8 commit 37d381b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions arches_lingo/src/arches_lingo/components/generic/LabelViewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Button from "primevue/button";
import ConfirmDialog from "primevue/confirmdialog";
import { useConfirm } from "primevue/useconfirm";
import ControlledListItemViewer from "@/arches_lingo/components/generic/ControlledListItemViewer.vue";
import ControlledListItem from "@/arches_lingo/components/generic/ControlledListItemViewer.vue";
import ResourceInstanceRelationships from "@/arches_lingo/components/generic/ResourceInstanceRelationships.vue";
import type { AppellativeStatus } from "@/arches_lingo/types";
Expand Down Expand Up @@ -73,13 +73,13 @@ function confirmDelete(tileId: string) {
sortable
>
<template #body="slotProps">
<ControlledListItemViewer
<ControlledListItem
:value="
(slotProps.data as AppellativeStatus)
.appellative_status_ascribed_relation
"
>
</ControlledListItemViewer>
</ControlledListItem>
</template>
</Column>
<Column
Expand All @@ -88,13 +88,13 @@ function confirmDelete(tileId: string) {
sortable
>
<template #body="slotProps">
<ControlledListItemViewer
<ControlledListItem
:value="
(slotProps.data as AppellativeStatus)
.appellative_status_ascribed_name_language
"
>
</ControlledListItemViewer>
</ControlledListItem>
</template>
</Column>
<Column>
Expand Down

0 comments on commit 37d381b

Please sign in to comment.