Skip to content

Commit

Permalink
Merge pull request #9717 from archesproject/9715-cbyrd-updates-labelb…
Browse files Browse the repository at this point in the history
…asedgraph-for-provisional-edits

updates labelbasedgraph to handle provisional edits #9715
  • Loading branch information
chiatt authored Jul 8, 2023
2 parents 10c40d7 + b103a89 commit 612f9ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arches/app/utils/label_based_graph_v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def _get_display_value(cls, tile, serialized_node, datatype_factory):
# if the serialized_node is unable to collect data, let's explicitly say so
if datatype_factory.datatypes[serialized_node["datatype"]].defaultwidget is None:
display_value = NON_DATA_COLLECTING_NODE
elif tile.data:
elif tile.data or tile.provisionaledits:
datatype = datatype_factory.get_instance(serialized_node["datatype"])

node_copy = copy.deepcopy(serialized_node)
Expand Down

0 comments on commit 612f9ec

Please sign in to comment.