diff --git a/app/src/interfaces/select-dropdown-m2o/select-dropdown-m2o.vue b/app/src/interfaces/select-dropdown-m2o/select-dropdown-m2o.vue index 1a98fc15fa..51a1f73376 100644 --- a/app/src/interfaces/select-dropdown-m2o/select-dropdown-m2o.vue +++ b/app/src/interfaces/select-dropdown-m2o/select-dropdown-m2o.vue @@ -71,7 +71,7 @@ :collection="relatedCollection.collection" :primary-key="currentPrimaryKey" :edits="edits" - :circular-field="relation.meta.one_field" + :circular-field="relation.meta?.one_field" @input="stageEdits" /> @@ -325,7 +325,7 @@ export default defineComponent({ }); const relatedCollection = computed(() => { - return collectionsStore.getCollection(relation.value.related_collection)!; + return collectionsStore.getCollection(relation.value.related_collection!)!; }); const { primaryKeyField: relatedPrimaryKeyField } = useCollection(relatedCollection.value.collection);