fix: html tags removed in log viewer

This commit is contained in:
Alexzvn 2026-05-22 08:38:51 +00:00
parent 49656aa1ed
commit a64e1b579b
2 changed files with 2 additions and 2 deletions

View file

@ -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) {

View file

@ -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) {