We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e90ea6a commit 9818765Copy full SHA for 9818765
pydatalab/src/pydatalab/routes/v0_1/graphs.py
@@ -186,7 +186,7 @@ def get_graph_cy_format(
186
{
187
"data": {
188
"id": document["item_id"],
189
- "name": document["name"] if document["name"] else document["item_id"],
+ "name": document["name"] if document.get("name") else document["item_id"],
190
"type": document["type"],
191
"special": document["item_id"] == item_id,
192
}
0 commit comments