Merge pull request #4395 from thornbill/fix-installed-plugin-version

Fix installed plugin version html
This commit is contained in:
Bill Thornton
2023-03-07 16:27:42 -05:00
committed by GitHub

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('');
}