File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
x-pack/legacy/plugins/lens Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 55 */
66
77export const PLUGIN_ID = 'lens' ;
8-
8+ export const NOT_INTERNATIONALIZED_PRODUCT_NAME = 'Lens Visualizations' ;
99export const BASE_APP_URL = '/app/kibana' ;
1010export const BASE_API_URL = '/api/lens' ;
1111
Original file line number Diff line number Diff line change @@ -9,11 +9,9 @@ import { resolve } from 'path';
99import { LegacyPluginInitializer } from 'src/legacy/types' ;
1010import KbnServer , { Server } from 'src/legacy/server/kbn_server' ;
1111import mappings from './mappings.json' ;
12- import { PLUGIN_ID , getEditPath } from './common' ;
12+ import { PLUGIN_ID , getEditPath , NOT_INTERNATIONALIZED_PRODUCT_NAME } from './common' ;
1313import { lensServerPlugin } from './server' ;
1414
15- export const NOT_INTERNATIONALIZED_PRODUCT_NAME = 'Lens Visualizations' ;
16-
1715export const lens : LegacyPluginInitializer = kibana => {
1816 return new kibana . Plugin ( {
1917 id : PLUGIN_ID ,
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ import {
3838 stopReportManager ,
3939 trackUiEvent ,
4040} from '../lens_ui_telemetry' ;
41- import { NOT_INTERNATIONALIZED_PRODUCT_NAME } from '../../index ' ;
41+ import { NOT_INTERNATIONALIZED_PRODUCT_NAME } from '../../common ' ;
4242import { KibanaLegacySetup } from '../../../../../../src/plugins/kibana_legacy/public' ;
4343import { EditorFrameStart } from '../types' ;
4444
@@ -50,6 +50,7 @@ export interface LensPluginStartDependencies {
5050 data : DataPublicPluginStart ;
5151 dataShim : DataStart ;
5252}
53+
5354export class AppPlugin {
5455 private startDependencies : {
5556 data : DataPublicPluginStart ;
You can’t perform that action at this time.
0 commit comments