fix: missing props on Draggable

Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
Braks
2021-11-23 16:17:02 +01:00
parent 8ec494da1e
commit 54d5780feb
@@ -61,7 +61,13 @@ export default {
</script>
<template>
<div class="vue-flow__nodesselection" :style="{ transform }">
<Draggable @start="onStart" @move="onDrag" @stop="onStop">
<Draggable
:grid="store.snapToGrid ? store.snapGrid : undefined"
:enable-user-select-hack="false"
@start="onStart"
@move="onDrag"
@stop="onStop"
>
<div
:key="`vue-flow-nodesselection-rect-${store.$id}`"
class="vue-flow__nodesselection-rect"