From 8ab295d949694b51a664701753f4e5c995f6f3bc Mon Sep 17 00:00:00 2001 From: Liana Husikyan Date: Mon, 24 May 2021 10:12:23 +0200 Subject: [PATCH] adding doc link for all plugins (#1195) fix https://github.com/ethereum/remix-project/issues/1103 --- .../src/app/components/plugin-manager-component.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/apps/remix-ide/src/app/components/plugin-manager-component.js b/apps/remix-ide/src/app/components/plugin-manager-component.js index 14494138a1..34ddc8ee5e 100644 --- a/apps/remix-ide/src/app/components/plugin-manager-component.js +++ b/apps/remix-ide/src/app/components/plugin-manager-component.js @@ -114,6 +114,8 @@ class PluginManagerComponent extends ViewPlugin { renderItem (profile) { const displayName = (profile.displayName) ? profile.displayName : profile.name + const doclink = profile.documentation ? yo`` + : yo`` // Check version of the plugin let versionWarning @@ -147,8 +149,11 @@ class PluginManagerComponent extends ViewPlugin {
- ${displayName} - ${versionWarning} +
+ ${displayName} + ${doclink} + ${versionWarning} +
${activationButton}