mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 08:05:43 -06:00
Dashboard: Hides alpha icon for visualization that is not in alpha/beta stage #19300
Fixes #19251
This commit is contained in:
parent
b7752b8c02
commit
f01836c17a
@ -19,6 +19,10 @@ function getPluginStateInfoText(state?: PluginState): string | null {
|
||||
const PluginStateinfo: FC<Props> = props => {
|
||||
const text = getPluginStateInfoText(props.state);
|
||||
|
||||
if (!text) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
<AlphaNotice
|
||||
state={props.state}
|
||||
|
Loading…
Reference in New Issue
Block a user