diff --git a/packages/frontend-2/components/viewer/selection/Object.vue b/packages/frontend-2/components/viewer/selection/Object.vue index 552259e4d..81b6be8f9 100644 --- a/packages/frontend-2/components/viewer/selection/Object.vue +++ b/packages/frontend-2/components/viewer/selection/Object.vue @@ -315,4 +315,11 @@ const categorisedValuePairs = computed(() => { nulls: keyValuePairs.value.filter((item) => item.value === null) } }) + +watch( + () => props.unfold, + (newVal) => { + unfold.value = newVal + } +)