mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 15:44:06 -08:00
fix(editor): prevent text highlight on FireFox when mapping data (#4347)
prevent highlight bug
This commit is contained in:
parent
d31fbbba27
commit
e1e2c94331
|
@ -89,6 +89,9 @@ export default Vue.extend({
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
e.preventDefault();
|
||||||
|
e.stopPropagation();
|
||||||
|
|
||||||
this.isDragging = false;
|
this.isDragging = false;
|
||||||
this.draggablePosition = { x: e.pageX, y: e.pageY };
|
this.draggablePosition = { x: e.pageX, y: e.pageY };
|
||||||
this.setDraggableStyle();
|
this.setDraggableStyle();
|
||||||
|
|
Loading…
Reference in a new issue