Skip to content

Commit

Permalink
fixup! Improve types handling in ResourceInstance dt transform_value_…
Browse files Browse the repository at this point in the history
…for_tile
  • Loading branch information
jacobtylerwalls committed Nov 7, 2024
1 parent 5fc4ed2 commit 2ea3ff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arches/app/datatypes/datatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2260,7 +2260,7 @@ def from_id_string(uuid_string):
case str():
transformed.append(from_id_string(inner))
case _:
transformed.append(value)
transformed.append(inner)
return transformed
if isinstance(value, models.ResourceInstance):
return [from_id_string(str(value.pk))]
Expand Down

0 comments on commit 2ea3ff7

Please sign in to comment.