1

I'm integrating tui image editor on my project but I'm facing a problem when I try to type. The image editor is inside a modal and I think it has to do something with that but I don't know what. Everything works fine except when I try to add a text.

Any ideas?

Sara Mesa
  • 185
  • 1
  • 1
  • 7

2 Answers2

0

i have tested using react-bootstrap using modal and it works. set enforceFocus to false. like the code below

<Modal enforceFocus={false}>
reggi49
  • 460
  • 3
  • 11
0

Check this out, here is some possible solution:

Unable to edit text field

In my case, I was using bootstrap modal and I set the 'data-bs-focus' to 'false'. And it worked. Like below:

<div class="modal fade" id="showModal" tabindex="-1" data-bs-focus="false" role="dialog">
Antor
  • 1
  • 2