From 177d88dd84408ee47f8967434ee78d97b0bed1df Mon Sep 17 00:00:00 2001 From: BaronGreenback Date: Wed, 30 Dec 2020 17:09:24 +0000 Subject: [PATCH] Update src/controllers/dashboard/plugins/installed/index.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Fernando Fernández --- src/controllers/dashboard/plugins/installed/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/dashboard/plugins/installed/index.js b/src/controllers/dashboard/plugins/installed/index.js index 625a55c152..76249abf64 100644 --- a/src/controllers/dashboard/plugins/installed/index.js +++ b/src/controllers/dashboard/plugins/installed/index.js @@ -79,7 +79,7 @@ function getPluginCardHtml(plugin, pluginConfigurationPages) { html += "
"; html += configPage && configPage.DisplayName ? configPage.DisplayName : plugin.Name; - html += '
' + globalize.translate('LabelStatus') + ` ${plugin.Status}
`; + html += `
${globalize.translate('LabelStatus')} ${plugin.Status}`; html += "
"; html += plugin.Version; html += '
';