Update happens abnormally when using Trix editor in LiveView

Hi, I’m trying to use Trix editor in LiveView.

But input is updated once every twice type in Trix editor.

You can try this in the page below.

How can I fix this problem?

Can you show the code you’re using?

Thanks!

I don’t know how Trix works exactly, but what I read on the GitHub seems to be that it updates the input with the same id.
I guess that’s the artifacts you’re seeing?
You update trix → which updates the text area (first change)-> which triggers a form change → rerender (second change?)

I’m not on my pc so hard to verify this assumption.
What are you trying to do exactly? Can you first verify what form changes you get when you type anything in trix.

I expected that update trix -> update input -> trigger form change -> event! but trix -> update input doesn’t work well.

I solved this problem with this comment.