diff --git a/arches_lingo/src/arches_lingo/components/generic/LabelEditor.vue b/arches_lingo/src/arches_lingo/components/generic/LabelEditor.vue index 407fe901..232abb60 100644 --- a/arches_lingo/src/arches_lingo/components/generic/LabelEditor.vue +++ b/arches_lingo/src/arches_lingo/components/generic/LabelEditor.vue @@ -76,7 +76,6 @@ const groupAndPersonOptions = ref(); const textualWorkOptions = ref(); function onUpdateString(node: keyof AppellativeStatus, val: string) { - console.log(formValue.value[node]); (formValue.value[node] as unknown) = toRaw(val); } @@ -84,7 +83,6 @@ function onUpdateReferenceDatatype( node: keyof AppellativeStatus, val: ControlledListItem[], ) { - console.log(formValue.value[node]); (formValue.value[node] as unknown) = val.map((item) => toRaw(item)); } @@ -93,7 +91,6 @@ function onUpdateResourceInstance( val: string[], options: ResourceInstanceReference[], ) { - console.log(formValue.value[node]); if (val.length > 0) { const selectedOptions = options.filter((option) => val.includes(option.resourceId), diff --git a/arches_lingo/src/arches_lingo/components/generic/NonLocalizedString.vue b/arches_lingo/src/arches_lingo/components/generic/NonLocalizedString.vue index 7365c134..23f5969e 100644 --- a/arches_lingo/src/arches_lingo/components/generic/NonLocalizedString.vue +++ b/arches_lingo/src/arches_lingo/components/generic/NonLocalizedString.vue @@ -9,7 +9,6 @@ const props = defineProps<{ value?: string; ptId?: string; }>(); -console.log(props); const emits = defineEmits(["update"]); const onUpdate = (val: string) => { emits("update", val);