From e654f80e4b92032bf4e8532f55a19392b7c2226d Mon Sep 17 00:00:00 2001 From: Patrick O'Carroll Date: Thu, 26 Oct 2017 14:25:43 +0200 Subject: [PATCH] fixed link issues --- public/app/features/panellinks/link_srv.ts | 1 - public/app/features/panellinks/module.js | 2 +- public/app/plugins/panel/singlestat/module.ts | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/public/app/features/panellinks/link_srv.ts b/public/app/features/panellinks/link_srv.ts index b167fb813ac..873e0233e41 100644 --- a/public/app/features/panellinks/link_srv.ts +++ b/public/app/features/panellinks/link_srv.ts @@ -2,7 +2,6 @@ import angular from 'angular'; import _ from 'lodash'; import kbn from 'app/core/utils/kbn'; - export class LinkSrv { /** @ngInject */ diff --git a/public/app/features/panellinks/module.js b/public/app/features/panellinks/module.js index 351b38f27c4..a36317dc2b3 100644 --- a/public/app/features/panellinks/module.js +++ b/public/app/features/panellinks/module.js @@ -1,7 +1,7 @@ define([ 'angular', 'lodash', - './linkSrv', + './link_srv', ], function (angular, _) { 'use strict'; diff --git a/public/app/plugins/panel/singlestat/module.ts b/public/app/plugins/panel/singlestat/module.ts index 5879b2d720a..134a703a0fb 100644 --- a/public/app/plugins/panel/singlestat/module.ts +++ b/public/app/plugins/panel/singlestat/module.ts @@ -2,7 +2,7 @@ import _ from 'lodash'; import $ from 'jquery'; import 'vendor/flot/jquery.flot'; import 'vendor/flot/jquery.flot.gauge'; -import 'app/features/panellinks/linkSrv'; +import 'app/features/panellinks/link_srv'; import kbn from 'app/core/utils/kbn'; import config from 'app/core/config';