alpinejs / alpine

A rugged, minimal framework for composing JavaScript behavior in your markup.
https://alpinejs.dev
MIT License
28.43k stars 1.23k forks source link

:bug: Cleans teleported clone #4328

Closed ekwoka closed 3 months ago

ekwoka commented 3 months ago

As a follow-up to #4300

When x-teleport was nested inside x-if, the use of mutateDom was preventing x-teleport clones from being cleaned up.

This just applies the same fix to immediately clean up the x-teleport clone.

Thanks @mgschoen for finding this regression.

calebporzio commented 3 months ago

Thanks!