From 8bf2913b3ba221a23635b6ebaef48def25dd45d8 Mon Sep 17 00:00:00 2001 From: Phil Weir Date: Wed, 1 May 2024 13:38:32 +0100 Subject: [PATCH] fix: restore loading values for a semantic tile --- arches_orm/arches_django/datatypes/semantic.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arches_orm/arches_django/datatypes/semantic.py b/arches_orm/arches_django/datatypes/semantic.py index 915d475..cc12cc1 100644 --- a/arches_orm/arches_django/datatypes/semantic.py +++ b/arches_orm/arches_django/datatypes/semantic.py @@ -41,6 +41,8 @@ def make_pseudo_node(key): def get_child_values(svm): if not parent: return {} + for key in child_nodes: + res = parent._values.get(key) children = { key: value for key, values in parent._values.items()