mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #3519 from dmitrylyzo/fix-escapehtml
Escape HTML
(cherry picked from commit ef811e699c
)
Signed-off-by: crobibero <cody@robibe.ro>
This commit is contained in:
parent
a74ddbb5ca
commit
7ec51f111c
6 changed files with 8 additions and 7 deletions
|
@ -246,7 +246,7 @@ import template from './itemidentifier.template.html';
|
|||
} else {
|
||||
html += '<div class="cardText cardText-secondary cardTextCentered">';
|
||||
}
|
||||
html += escapeHtml(lines[i]) || ' ';
|
||||
html += escapeHtml(lines[i] || '') || ' ';
|
||||
html += '</div>';
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue