alpine-ajax
alpine-ajax copied to clipboard
this.$el points to button instead of x-data element
In the Notifications, this.$el
in dismiss()
points to the button instead of the parent x-data
element, causing the wrong element to be removed.
Suggestion:
Use this.$data.$el && setTimeout(() => this.$data.$el.remove(), 500)
to fix the issue.