mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
11 lines
272 B
TypeScript
11 lines
272 B
TypeScript
import { PanelCtrl } from 'app/features/panel/panel_ctrl';
|
|
|
|
export class UnknownPanelCtrl extends PanelCtrl {
|
|
static templateUrl = 'public/app/plugins/panel/unknown/module.html';
|
|
|
|
/** @ngInject */
|
|
constructor($scope, $injector) {
|
|
super($scope, $injector);
|
|
}
|
|
}
|