0

In a contrived chat app, I added a smiley face to a div via a phx-hook. After adding a chat, the smiley face is still there:

After adding a chat

However, after deleting the chat, the smiley disappears:

After deleting the chat

How can I prevent it from disappearing?

ijt
  • 3,505
  • 1
  • 29
  • 40

1 Answers1

0

It can be fixed by adding phx-update="ignore" to the div whose contents are generated by JavaScript:

<div id="smiley" style="font-size: 80px" phx-hook="Smiley" phx-update="ignore"></div>
ijt
  • 3,505
  • 1
  • 29
  • 40