From a2b3e637058f987c6e881dcfe07cb0ca79de254d Mon Sep 17 00:00:00 2001 From: Dominik Prokop Date: Thu, 29 Oct 2020 10:41:32 +0100 Subject: [PATCH] Plugin signing: Fix copy on signed plugin notice (#28633) * Fix copy on signed plugin notice * Update public/app/features/plugins/PluginPage.tsx Co-authored-by: Arve Knudsen * Update public/app/features/plugins/PluginPage.tsx Co-authored-by: Arve Knudsen Co-authored-by: Arve Knudsen --- public/app/features/plugins/PluginPage.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/public/app/features/plugins/PluginPage.tsx b/public/app/features/plugins/PluginPage.tsx index bf29f4240a3..4a6d0cb1e20 100644 --- a/public/app/features/plugins/PluginPage.tsx +++ b/public/app/features/plugins/PluginPage.tsx @@ -326,8 +326,9 @@ class PluginPage extends PureComponent {

Grafana Labs checks each plugin to verify that it has a valid digital signature. Plugin signature verification - is part of our security measure to ensure plugins are safe and trustworthy. Grafana Labs can’t guarantee the - integrity of this unsigned plugin. Ask the plugin author to request it to be signed. + is part of our security measures to ensure plugins are safe and trustworthy. + {plugin.meta.signature !== PluginSignatureStatus.valid && + 'Grafana Labs can’t guarantee the integrity of this unsigned plugin. Ask the plugin author to request it to be signed.'}

);