Merge pull request #15076 from grafana/minor-moving-task

Moving a few things from dashboard folder
This commit is contained in:
Torkel Ödegaard 2019-01-28 10:57:04 +01:00 committed by GitHub
commit 642e1115f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
import config from 'app/core/config'; import config from 'app/core/config';
import { LinkSrv } from 'app/features/dashboard/panellinks/link_srv'; import { LinkSrv } from 'app/features/panel/panellinks/link_srv';
import { ShareModalCtrl } from './ShareModalCtrl'; import { ShareModalCtrl } from './ShareModalCtrl';
describe('ShareModalCtrl', () => { describe('ShareModalCtrl', () => {

View File

@ -3,7 +3,7 @@ import Remarkable from 'remarkable';
import { Tooltip } from '@grafana/ui'; import { Tooltip } from '@grafana/ui';
import { PanelModel } from 'app/features/dashboard/panel_model'; import { PanelModel } from 'app/features/dashboard/panel_model';
import templateSrv from 'app/features/templating/template_srv'; import templateSrv from 'app/features/templating/template_srv';
import { LinkSrv } from 'app/features/dashboard/panellinks/link_srv'; import { LinkSrv } from 'app/features/panel/panellinks/link_srv';
import { getTimeSrv, TimeSrv } from 'app/features/dashboard/time_srv'; import { getTimeSrv, TimeSrv } from 'app/features/dashboard/time_srv';
enum InfoModes { enum InfoModes {

View File

@ -1,8 +1,6 @@
import './dashboard_ctrl'; import './dashboard_ctrl';
import './time_srv'; import './time_srv';
import './repeat_option/repeat_option';
import './dashgrid/DashboardGridDirective'; import './dashgrid/DashboardGridDirective';
import './panellinks/module';
// Services // Services
import './services/DashboardViewStateSrv'; import './services/DashboardViewStateSrv';

View File

@ -4,3 +4,5 @@ import './solo_panel_ctrl';
import './query_ctrl'; import './query_ctrl';
import './panel_editor_tab'; import './panel_editor_tab';
import './query_editor_row'; import './query_editor_row';
import './repeat_option';
import './panellinks/module';

View File

@ -2,7 +2,7 @@ import _ from 'lodash';
import $ from 'jquery'; import $ from 'jquery';
import 'vendor/flot/jquery.flot'; import 'vendor/flot/jquery.flot';
import 'vendor/flot/jquery.flot.gauge'; import 'vendor/flot/jquery.flot.gauge';
import 'app/features/dashboard/panellinks/link_srv'; import 'app/features/panel/panellinks/link_srv';
import kbn from 'app/core/utils/kbn'; import kbn from 'app/core/utils/kbn';
import config from 'app/core/config'; import config from 'app/core/config';