mirror of
https://github.com/grafana/grafana.git
synced 2025-07-29 11:22:21 +08:00
Plugins: Angular detection: Fix detection not being run for CDN plugins (#70960)
This commit is contained in:
@ -486,7 +486,7 @@ func (p *Plugin) IsBundledPlugin() bool {
|
||||
}
|
||||
|
||||
func (p *Plugin) IsExternalPlugin() bool {
|
||||
return p.Class == ClassExternal
|
||||
return !p.IsCorePlugin() && !p.IsBundledPlugin()
|
||||
}
|
||||
|
||||
type Class string
|
||||
|
Reference in New Issue
Block a user