Skip to content
Snippets Groups Projects
Commit 800325a3 authored by Leonardo Christino's avatar Leonardo Christino
Browse files

Merge branch 'fix/json_formatted_attribute' into 'main'

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

See merge request !73
parents 3a02b415 1142df82
No related branches found
No related tags found
1 merge request!73fix(qb): fix when there are json formatted attribute values
Pipeline #127275 passed
......@@ -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, {
......
......@@ -29,7 +29,6 @@ export const RelationNode = React.memo(({ id, data }: NodeProps<SchemaReactflowR
* @param event React Mouse drag event.
*/
const onDragStart = (event: React.DragEvent<HTMLDivElement>) => {
console.log('dragging relation', id, data);
event.dataTransfer.setData(
'application/reactflow',
JSON.stringify({
......
......@@ -27,7 +27,7 @@ export const NLPopup = (props: NodelinkPopupProps) => {
return (
<div key={k} className="flex flex-row gap-3">
<span className="">{k}: </span>
<span className="ml-auto flex-wrap max-w-[10rem] text-right">{v}</span>
<span className="ml-auto flex-wrap max-w-[10rem] text-right">{JSON.stringify(v)}</span>
</div>
);
})}
......
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