From a64e1b579b1b931bd45b61a6e769fdc64cdc4819 Mon Sep 17 00:00:00 2001 From: Alexzvn Date: Fri, 22 May 2026 08:38:51 +0000 Subject: [PATCH] fix: html tags removed in log viewer --- .../livewire/project/application/deployment/show.blade.php | 2 +- resources/views/livewire/project/shared/get-logs.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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) {