Skip to content
Snippets Groups Projects
Commit 5f9b1581 authored by Maximilian Giller's avatar Maximilian Giller
Browse files

Fixed formatting on partial nodes

parent 40e1c1e5
No related branches found
No related tags found
No related merge requests found
......@@ -185,7 +185,7 @@ export class SelectMenu extends ToolMenu {
var value = node[propertyKey];
var formattedValue = undefined;
if (propertyKey === Graph.NODE_REFERENCES) {
if (propertyKey === Graph.NODE_REFERENCES && Array.isArray(value)) {
formattedValue = value.join("\n");
} else {
formattedValue = value;
......
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