mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 17:12:10 +08:00
Image rendering: Fix missing icon on plugins list (#23958)
Fixes #23189
This commit is contained in:

committed by
GitHub

parent
c45b6c86e1
commit
0a1650d265
@ -121,6 +121,10 @@ func (pm *PluginManager) Init() error {
|
|||||||
app.initApp()
|
app.initApp()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if Renderer != nil {
|
||||||
|
Renderer.initFrontendPlugin()
|
||||||
|
}
|
||||||
|
|
||||||
for _, p := range Plugins {
|
for _, p := range Plugins {
|
||||||
if p.IsCorePlugin {
|
if p.IsCorePlugin {
|
||||||
p.Signature = PluginSignatureInternal
|
p.Signature = PluginSignatureInternal
|
||||||
|
@ -13,7 +13,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type RendererPlugin struct {
|
type RendererPlugin struct {
|
||||||
PluginBase
|
FrontendPluginBase
|
||||||
|
|
||||||
Executable string `json:"executable,omitempty"`
|
Executable string `json:"executable,omitempty"`
|
||||||
GrpcPluginV1 pluginModel.RendererPlugin
|
GrpcPluginV1 pluginModel.RendererPlugin
|
||||||
|
Reference in New Issue
Block a user