fix(ui): notes node text not selectable

This commit is contained in:
psychedelicious 2024-05-21 10:06:25 +10:00
parent 1249d4a6e3
commit e75f98317f

View File

@ -48,7 +48,7 @@ const NotesNode = (props: NodeProps<NotesNodeData>) => {
gap={1}
>
<Flex className="nopan" w="full" h="full" flexDir="column">
<Textarea value={notes} onChange={handleChange} rows={8} resize="none" fontSize="sm" />
<Textarea className="nodrag" value={notes} onChange={handleChange} rows={8} resize="none" fontSize="sm" />
</Flex>
</Flex>
</>