Commit 0a1650d2 by Marcus Efraimsson Committed by GitHub

Image rendering: Fix missing icon on plugins list (#23958)

Fixes #23189
parent c45b6c86
......@@ -121,6 +121,10 @@ func (pm *PluginManager) Init() error {
app.initApp()
}
if Renderer != nil {
Renderer.initFrontendPlugin()
}
for _, p := range Plugins {
if p.IsCorePlugin {
p.Signature = PluginSignatureInternal
......
......@@ -13,7 +13,7 @@ import (
)
type RendererPlugin struct {
PluginBase
FrontendPluginBase
Executable string `json:"executable,omitempty"`
GrpcPluginV1 pluginModel.RendererPlugin
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment