Skip to content
Snippets Groups Projects
Commit 033fa1ab authored by AndiMajore's avatar AndiMajore
Browse files

removing _groups attribute from file download

parent a38b07a8
No related branches found
No related tags found
No related merge requests found
Pipeline #63890 failed
...@@ -475,7 +475,7 @@ def graph_export(request) -> Response: ...@@ -475,7 +475,7 @@ def graph_export(request) -> Response:
file ready to download. file ready to download.
""" """
remove_node_properties = ['color', 'shape', 'border_width', 'group', 'border_width_selected', 'shadow', remove_node_properties = ['color', 'shape', 'border_width', 'group', 'border_width_selected', 'shadow',
'group_id', 'drugstone_type', 'font', 'x', 'y'] 'group_id', 'drugstone_type', 'font', 'x', 'y', '_group']
rename_node_properties = {'group_name': 'group'} rename_node_properties = {'group_name': 'group'}
remove_edge_properties = ['group', 'color', 'dashes', 'shadow', 'id'] remove_edge_properties = ['group', 'color', 'dashes', 'shadow', 'id']
rename_edge_properties = {'group_name': 'group'} rename_edge_properties = {'group_name': 'group'}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment