Skip to content

Commit

Permalink
Cast uuid for nodegroup_id evaluation, #11029
Browse files Browse the repository at this point in the history
  • Loading branch information
njkim committed Jun 12, 2024
1 parent 97bb835 commit 9af4a03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arches/app/models/tile.py
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ def after_update_all(self):
nodes = [
SimpleNamespace(node)
for node in self.serialized_graph["nodes"]
if node["nodegroup_id"] == self.nodegroup_id
if node["nodegroup_id"] == str(self.nodegroup_id)
]
except TypeError: # handle if serialized_graph is None
nodes = self.nodegroup.node_set.all()
Expand Down

0 comments on commit 9af4a03

Please sign in to comment.