alpinejs / alpine

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

:bug: Cleans teleported clone #4328

Closed ekwoka closed 1 month ago

ekwoka commented 1 month 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 1 month ago

Thanks!