We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ada763f commit 55b84a9Copy full SHA for 55b84a9
1 file changed
src/runtime/create-runtime/interaction-runtime.ts
@@ -99,7 +99,8 @@ export function createRuntimeInteraction(
99
const updateCanvasCursor = () => {
100
const canvas = getCanvas();
101
if (!canvas) return;
102
- const showPointer = linkState.hoverId !== 0 && !selectionState.active && !selectionState.dragging;
+ const showPointer =
103
+ linkState.hoverId !== 0 && !selectionState.active && !selectionState.dragging;
104
canvas.style.cursor = showPointer ? "pointer" : "text";
105
};
106
0 commit comments