Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix after_update_all when node value is updated, #11029 #11030

Merged
merged 2 commits into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
1 change: 1 addition & 0 deletions releases/7.6.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ Arches 7.6.0 Release Notes
- 10665 Return resourceid in ActivityStream rather than resource url
- 10754 Move the i18n/ url outside of the i18n_patterns function
- Allow minzoom and maxzoom to be applied to a resource map source from a geojson node config #10929
- Fix the issue with a geojson geometry not being refreshed when the node value is updated, #11029

### Dependency changes
```
Expand Down
Loading