mirror of
https://github.com/tiennm99/coolify.git
synced 2026-09-20 02:21:05 +00:00
The account-menu dropdown wrapped its panel, including the settings-dropdown Livewire component, in <template x-if="open">. The "What's New" button carries both wire:click and @click="open = false" on the same element, so closing the menu tore the Livewire component out of the DOM while its request was still in flight, leaving Livewire unable to find the component to morph the response into. Switch back to x-show/x-cloak so the component stays mounted (just hidden via CSS) and survives the menu-close click. Fixes #11219 Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>