diff --git a/resources/views/livewire/project/application/deployment/show.blade.php b/resources/views/livewire/project/application/deployment/show.blade.php index 8ef2c3f51..38ce9e4ce 100644 --- a/resources/views/livewire/project/application/deployment/show.blade.php +++ b/resources/views/livewire/project/application/deployment/show.blade.php @@ -144,7 +144,7 @@ if (matches && query) count++; if (textSpan) { - const originalText = this.decodeHtml(textSpan.dataset.lineText || ''); + const originalText = textSpan.dataset.lineText || ''; if (!query) { textSpan.textContent = originalText; } else if (matches) { diff --git a/resources/views/livewire/project/shared/get-logs.blade.php b/resources/views/livewire/project/shared/get-logs.blade.php index 4ef77081e..e475a45b5 100644 --- a/resources/views/livewire/project/shared/get-logs.blade.php +++ b/resources/views/livewire/project/shared/get-logs.blade.php @@ -163,7 +163,7 @@ // Update highlighting if (textSpan) { - const originalText = this.decodeHtml(textSpan.dataset.lineText || ''); + const originalText = textSpan.dataset.lineText || ''; if (!query) { textSpan.textContent = originalText; } else if (matches) {