Add watch to fold selected objects when multiple are selected (#2273)

This commit is contained in:
andrewwallacespeckle
2024-05-22 11:02:43 +02:00
committed by GitHub
parent 82619fcfd0
commit 99bf268a74
@@ -315,4 +315,11 @@ const categorisedValuePairs = computed(() => {
nulls: keyValuePairs.value.filter((item) => item.value === null)
}
})
watch(
() => props.unfold,
(newVal) => {
unfold.value = newVal
}
)
</script>