mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -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;
|
||||
}
|
||||
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
|
||||
this.isDragging = false;
|
||||
this.draggablePosition = { x: e.pageX, y: e.pageY };
|
||||
this.setDraggableStyle();
|
||||
|
|
Loading…
Reference in a new issue