From 93d2588c229b8e037f49c10575f368ae987cfe46 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Wed, 2 Jan 2019 20:58:03 +0100 Subject: [PATCH] remove not used file --- .../stackdriver/angular_wrappers.ts | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 public/app/plugins/datasource/stackdriver/angular_wrappers.ts diff --git a/public/app/plugins/datasource/stackdriver/angular_wrappers.ts b/public/app/plugins/datasource/stackdriver/angular_wrappers.ts deleted file mode 100644 index ff469b96535..00000000000 --- a/public/app/plugins/datasource/stackdriver/angular_wrappers.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { react2AngularDirective } from 'app/core/utils/react2angular'; -import { QueryEditor } from './components/QueryEditor'; -import { AnnotationQueryEditor } from './components/AnnotationQueryEditor'; - -//This should be removed when the plugin is fully reactified -export function registerAngularDirectives() { - react2AngularDirective('queryEditor', QueryEditor, [ - 'target', - 'onQueryChange', - 'onExecuteQuery', - ['events', { watchDepth: 'reference' }], - ['datasource', { watchDepth: 'reference' }], - ]); - react2AngularDirective('annotationQueryEditor', AnnotationQueryEditor, [ - 'target', - 'onQueryChange', - 'onExecuteQuery', - ['datasource', { watchDepth: 'reference' }], - ]); -}