From 7ca66b204004d4d0089de652cd47c51d4195cf36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Sun, 10 Jan 2021 20:05:28 +0100 Subject: [PATCH] PluginState: Update comment --- packages/grafana-data/src/types/plugin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grafana-data/src/types/plugin.ts b/packages/grafana-data/src/types/plugin.ts index b963136c434..fdab55da862 100644 --- a/packages/grafana-data/src/types/plugin.ts +++ b/packages/grafana-data/src/types/plugin.ts @@ -6,7 +6,7 @@ import { LiveChannelSupport } from './live'; export enum PluginState { alpha = 'alpha', // Only included if `enable_alpha` config option is true beta = 'beta', // Will show a warning banner - stable = 'stable', // Will show a warning banner + stable = 'stable', // Will not show anything deprecated = 'deprecated', // Will continue to work -- but not show up in the options to add }