mirror of
https://github.com/grafana/grafana.git
synced 2026-08-08 20:28:14 -05:00
Plugins: Fix plugin signature status (#37583)
This commit is contained in:
@@ -124,7 +124,7 @@ export function mapToCatalogPlugin(local?: LocalPlugin, remote?: RemotePlugin):
|
||||
popularity: remote?.popularity || 0,
|
||||
publishedAt: remote?.createdAt || '',
|
||||
type: remote?.typeCode || local?.type,
|
||||
signature: local?.signature || hasRemoteSignature ? PluginSignatureStatus.valid : PluginSignatureStatus.missing,
|
||||
signature: local?.signature || (hasRemoteSignature ? PluginSignatureStatus.valid : PluginSignatureStatus.missing),
|
||||
updatedAt: remote?.updatedAt || local?.info.updated || '',
|
||||
version,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user