From ed3b0ca92af26af8798e559baa001f702077b9f9 Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Fri, 17 Jan 2025 18:10:28 -0500 Subject: [PATCH] Fix pt pass thru --- .../src/arches_lingo/components/generic/ReferenceDatatype.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arches_lingo/src/arches_lingo/components/generic/ReferenceDatatype.vue b/arches_lingo/src/arches_lingo/components/generic/ReferenceDatatype.vue index 09346f25..ea04c85e 100644 --- a/arches_lingo/src/arches_lingo/components/generic/ReferenceDatatype.vue +++ b/arches_lingo/src/arches_lingo/components/generic/ReferenceDatatype.vue @@ -13,7 +13,7 @@ defineProps<{ value?: ControlledListItem[]; multiValue?: boolean; options?: ControlledListItem[]; - pt?: object; + ptAriaLabeledBy?: string; }>(); const emit = defineEmits(["update"]); const onUpdate = (val: ControlledListItem[]) => { @@ -30,7 +30,7 @@ const onUpdate = (val: ControlledListItem[]) => { :value="value" :options="options" :multi-value="multiValue" - :pt="pt" + :pt-aria-labeled-by="ptAriaLabeledBy" @update="onUpdate" />