Backport pull request #4395 from jellyfin/release-10.8.z

Fix installed plugin version html

Original-merge: 22d1f40587

Merged-by: Bill Thornton <thornbill@users.noreply.github.com>

Backported-by: crobibero <cody@robibe.ro>
This commit is contained in:
Bill Thornton 2023-03-09 19:43:08 -05:00 committed by crobibero
parent 2c4d065e0e
commit c9b72d87fe

View File

@ -68,7 +68,7 @@ function renderPackage(pkg, installedPlugins, page) {
if (installedPlugin) {
const currentVersionText = globalize.translate('MessageYouHaveVersionInstalled', '<strong>' + installedPlugin.Version + '</strong>');
$('#pCurrentVersion', page).show().text(currentVersionText);
$('#pCurrentVersion', page).show().html(currentVersionText);
} else {
$('#pCurrentVersion', page).hide().text('');
}