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

Fixes #23189
This commit is contained in:
Marcus Efraimsson 2020-04-27 21:15:44 +02:00 committed by GitHub
parent c45b6c86e1
commit 0a1650d265
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -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

View File

@ -13,7 +13,7 @@ import (
)
type RendererPlugin struct {
PluginBase
FrontendPluginBase
Executable string `json:"executable,omitempty"`
GrpcPluginV1 pluginModel.RendererPlugin