Skip to content

Commit

Permalink
updates labelbasedgraph to handle provisional edits #9715
Browse files Browse the repository at this point in the history
  • Loading branch information
chrabyrd committed Jul 5, 2023
1 parent 17927dd commit b103a89
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 b103a89

Please sign in to comment.