We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This panel:
does not appear in Grafana 6.3.5.
But, if you add an event init-edit-mode into BosunIncidentListCtrl, the panel is displayed and works correctly.
init-edit-mode
BosunIncidentListCtrl
Example this.events.on('init-edit-mode', this.onInitMetricsPanelEditMode.bind(this));:
this.events.on('init-edit-mode', this.onInitMetricsPanelEditMode.bind(this));
export class BosunIncidentListCtrl extends MetricsPanelCtrl { constructor($scope, $injector, $rootScope, $window, datasourceSrv, templateSrv, utilSrv, backendSrv, dashboardSrv) { super($scope, $injector); var self = this; this.panelCtrl = $scope.ctrl; this.datasourceSrv = datasourceSrv; this.$window = $window; this.templateSrv = templateSrv; this.$rootScope = $rootScope; this.linkUrl = ""; this.incidentList = []; this.refreshData = this.refreshData.bind(this); this.refreshData(); this.utilSrv = utilSrv; this.bodyHTML = ""; this.reversedFields = {}; this.showHelp = 0; this.storeId = dashboardSrv.getCurrent().id + "-" + this.panel.id; backendSrv.get('/api/user').then(user => { this.user = user; }); this.datasourceSrv.get(this.panel.datasource).then(datasource => { this.preRelease = datasource.preRelease; }); this.events.on('init-edit-mode', this.onInitMetricsPanelEditMode.bind(this)); }
You can make changes to the plugin for support Grafana 6.3.5?
Before After
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
This panel:
does not appear in Grafana 6.3.5.
But, if you add an event
init-edit-mode
intoBosunIncidentListCtrl
, the panel is displayed and works correctly.Example
this.events.on('init-edit-mode', this.onInitMetricsPanelEditMode.bind(this));
:You can make changes to the plugin for support Grafana 6.3.5?
Before
After
The text was updated successfully, but these errors were encountered: