Skip to content

Commit 62fcc5f

Browse files
Copilotgkorland
andcommitted
Merge staging: resolve conflicts, bump @falkordb/canvas to 0.0.44
Co-authored-by: gkorland <753206+gkorland@users.noreply.github.com>
1 parent c19ff5b commit 62fcc5f

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

app/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"preview": "vite preview"
1212
},
1313
"dependencies": {
14-
"@falkordb/canvas": "^0.0.41",
14+
"@falkordb/canvas": "^0.0.44",
1515
"@radix-ui/react-checkbox": "^1.1.4",
1616
"@radix-ui/react-dialog": "^1.1.6",
1717
"@radix-ui/react-dropdown-menu": "^2.1.6",

app/src/components/ForceGraph.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ interface Props {
2020
onBackgroundRightClick: (event: MouseEvent) => void
2121
nodeCanvasObject: (node: GraphNode, ctx: CanvasRenderingContext2D) => void
2222
nodePointerAreaPaint: (node: GraphNode, color: string, ctx: CanvasRenderingContext2D) => void
23-
linkLineDash: (link: any) => number[] | null
23+
linkLineDash: (link: any) => number[]
2424
onZoom: () => void
2525
onEngineStop: () => void
2626
cooldownTicks: number | undefined

app/src/components/graphView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ export default function GraphView({
246246

247247
const linkLineDash = useCallback((link: GraphLink) => {
248248
if (link.data.isPath && !link.data.isPathSelected) return [5, 5]
249-
return null
249+
return []
250250
}, [])
251251

252252
const mobileBreakpointRaw = Number(import.meta.env.VITE_MOBILE_BREAKPOINT)

0 commit comments

Comments
 (0)