From 098aeea612003d8583dc6904dea34789a61564dc Mon Sep 17 00:00:00 2001 From: dkanada Date: Mon, 28 Dec 2020 13:45:41 +0900 Subject: [PATCH] fix some linting errors --- src/controllers/dashboard/plugins/installed/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/controllers/dashboard/plugins/installed/index.js b/src/controllers/dashboard/plugins/installed/index.js index 00635b042c..98dc2ad71e 100644 --- a/src/controllers/dashboard/plugins/installed/index.js +++ b/src/controllers/dashboard/plugins/installed/index.js @@ -77,9 +77,9 @@ function getPluginCardHtml(plugin, pluginConfigurationPages) { html += ''; } - html += "
" + html += "
"; html += configPage && configPage.DisplayName ? configPage.DisplayName : plugin.Name; - html += '
Status: ' + plugin.Status +'
'; + html += '
Status: ' + plugin.Status + '
'; html += "
"; html += plugin.Version; html += '
';