mirror of https://github.com/grafana/grafana
parent
de456f8b73
commit
2ac202b22f
@ -1,7 +1,7 @@ |
||||
import _ from 'lodash'; |
||||
import { ThresholdMapper } from './threshold_mapper'; |
||||
import { ThresholdMapper } from './state/ThresholdMapper'; |
||||
import { QueryPart } from 'app/core/components/query_part/query_part'; |
||||
import alertDef from './alert_def'; |
||||
import alertDef from './state/alertDef'; |
||||
import config from 'app/core/config'; |
||||
import appEvents from 'app/core/app_events'; |
||||
|
@ -1,2 +0,0 @@ |
||||
import './notifications_list_ctrl'; |
||||
import './notification_edit_ctrl'; |
@ -1,6 +1,6 @@ |
||||
import { describe, it, expect } from 'test/lib/common'; |
||||
|
||||
import { ThresholdMapper } from '../threshold_mapper'; |
||||
import { ThresholdMapper } from './threshold_mapper'; |
||||
|
||||
describe('ThresholdMapper', () => { |
||||
describe('with greater than evaluator', () => { |
@ -1,5 +1,5 @@ |
||||
import { getBackendSrv } from 'app/core/services/backend_srv'; |
||||
import alertDef from '../alert_def'; |
||||
import alertDef from './alertDef'; |
||||
import moment from 'moment'; |
||||
|
||||
export interface AlertRule { |
@ -1,7 +1,7 @@ |
||||
import { PanelCtrl } from 'app/features/panel/panel_ctrl'; |
||||
import { MetricsPanelCtrl } from 'app/features/panel/metrics_panel_ctrl'; |
||||
import { QueryCtrl } from 'app/features/panel/query_ctrl'; |
||||
import { alertTab } from 'app/features/alerting/alert_tab_ctrl'; |
||||
import { alertTab } from 'app/features/alerting/AlertTabCtrl'; |
||||
import { loadPluginCss } from 'app/features/plugins/plugin_loader'; |
||||
|
||||
export { PanelCtrl, MetricsPanelCtrl, QueryCtrl, alertTab, loadPluginCss }; |
||||
|
@ -1,6 +1,7 @@ |
||||
import { NavModel } from './navModel'; |
||||
import { initNav } from 'app/core/actions'; |
||||
|
||||
export interface ContainerProps { |
||||
navModel: NavModel; |
||||
initNav: (...args: string[]) => void; |
||||
initNav: typeof initNav; |
||||
} |
||||
|
Loading…
Reference in new issue