Skip to content
Snippets Groups Projects

fix(qb): fix when there are json formatted attribute values

Merged Leonardo Christino requested to merge fix/json_formatted_attribute into main
3 files
+ 1
3
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -233,7 +233,6 @@ export const QueryBuilderInner = (props: QueryBuilderProps) => {
if (!isEdgeUpdating.current) {
isOnConnect.current = true;
if (!connection.sourceHandle || !connection.targetHandle) throw new Error('Connection has no source or target');
console.log('onConnect', connection);
if (!graphologyGraph.hasEdge(connection.source, connection.target)) {
graphologyGraph.addEdge(connection.source, connection.target, {
Loading