diff --git a/arches_lingo/src/arches_lingo/components/generic/LabelEditor.vue b/arches_lingo/src/arches_lingo/components/generic/LabelEditor.vue index a8e45bec..0d4f280e 100644 --- a/arches_lingo/src/arches_lingo/components/generic/LabelEditor.vue +++ b/arches_lingo/src/arches_lingo/components/generic/LabelEditor.vue @@ -241,7 +241,7 @@ onMounted(async () => { (); const emits = defineEmits(["update"]); const onUpdate = (val: string) => { @@ -22,7 +22,7 @@ const onUpdate = (val: string) => {
diff --git a/arches_lingo/src/arches_lingo/components/generic/non-localized-string/NonLocalizedStringEditor.vue b/arches_lingo/src/arches_lingo/components/generic/non-localized-string/NonLocalizedStringEditor.vue index f297865c..3cf49fb4 100644 --- a/arches_lingo/src/arches_lingo/components/generic/non-localized-string/NonLocalizedStringEditor.vue +++ b/arches_lingo/src/arches_lingo/components/generic/non-localized-string/NonLocalizedStringEditor.vue @@ -4,7 +4,7 @@ import InputText from "primevue/inputtext"; const props = defineProps<{ value: string; - ptId?: string; + passThruId?: string; }>(); const updateableValue = ref(props.value as string); @@ -22,7 +22,7 @@ watch(updateableValue, (newValue) => {