fix(editor): 🐛 Fix block title select on Chrome and Safari
This commit is contained in:
@ -117,7 +117,7 @@ export const Graph = ({
|
||||
}
|
||||
|
||||
return (
|
||||
<DraggableCore onDrag={onDrag}>
|
||||
<DraggableCore onDrag={onDrag} enableUserSelectHack={false}>
|
||||
<Flex ref={graphContainerRef} position="relative" {...props}>
|
||||
<Flex
|
||||
flex="1"
|
||||
|
@ -100,6 +100,7 @@ export const BlockNode = ({ block, blockIndex }: Props) => {
|
||||
>
|
||||
{(ref, isOpened) => (
|
||||
<DraggableCore
|
||||
enableUserSelectHack={false}
|
||||
onDrag={onDrag}
|
||||
onStart={onDragStart}
|
||||
onStop={onDragStop}
|
||||
|
Reference in New Issue
Block a user