fix: html tags removed in log viewer
This commit is contained in:
parent
49656aa1ed
commit
a64e1b579b
2 changed files with 2 additions and 2 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue