Alerting: Fixes alert panel header icon not showing (#30840)

* Alerting: Fixes alert panel header icon not showing

* Remove as any
This commit is contained in:
Torkel Ödegaard
2021-02-04 09:15:01 +01:00
committed by GitHub
parent aaf5710748
commit 01b10ab436
3 changed files with 21 additions and 3 deletions

View File

@@ -12,6 +12,7 @@ import {
FieldConfigSource,
PanelPlugin,
ScopedVars,
EventBus,
EventBusSrv,
DataFrameDTO,
urlUtil,
@@ -153,7 +154,7 @@ export class PanelModel implements DataConfigSource {
isInView: boolean;
hasRefreshed: boolean;
events: EventBusSrv;
events: EventBus;
cacheTimeout?: any;
cachedPluginOptions: Record<string, PanelOptionsCache>;
legend?: { show: boolean; sort?: string; sortDesc?: boolean };