Remove morph.updating hook that blocked log updates during text selection
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 <noreply@anthropic.com>
This commit is contained in:
parent
9493398b58
commit
7bb14d1d9c
1 changed files with 0 additions and 7 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in a new issue