diff --git a/src/browser/modules/Stream/CypherFrame/relatable-view.jsx b/src/browser/modules/Stream/CypherFrame/relatable-view.jsx index 182e8c4703..c84bb41318 100644 --- a/src/browser/modules/Stream/CypherFrame/relatable-view.jsx +++ b/src/browser/modules/Stream/CypherFrame/relatable-view.jsx @@ -108,10 +108,10 @@ function CypherCell({ cell }) { } if (isPoint(mapped)) { - return `point(${join( + return `point({${join( map(entries(mapped), pair => join(pair, ': ')), ', ' - )})` + )}})` } if (mapped && typeof mapped === 'object') {