From 7bb14d1d9cf6ce1d50e212f64ba7f001ac62acae Mon Sep 17 00:00:00 2001 From: Andras Bacsai <5845193+andrasbacsai@users.noreply.github.com> Date: Thu, 18 Dec 2025 12:40:14 +0100 Subject: [PATCH] Remove morph.updating hook that blocked log updates during text selection MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The hook was preventing new logs from appearing when text was selected. The hasActiveLogSelection() check in highlightText() is sufficient. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Haiku 4.5 --- .../livewire/project/application/deployment/show.blade.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/resources/views/livewire/project/application/deployment/show.blade.php b/resources/views/livewire/project/application/deployment/show.blade.php index 647f52128..2b6afe75a 100644 --- a/resources/views/livewire/project/application/deployment/show.blade.php +++ b/resources/views/livewire/project/application/deployment/show.blade.php @@ -136,13 +136,6 @@ } }, init() { - // Prevent Livewire from morphing logs container when text is selected - Livewire.hook('morph.updating', ({ el, component, toEl, skip }) => { - if (el.id === 'logs' && this.hasActiveLogSelection()) { - skip(); - } - }); - // Watch search query changes this.$watch('searchQuery', () => { this.applySearch();