We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ff43c5 commit 98ab2d2Copy full SHA for 98ab2d2
1 file changed
src/legacy/core_plugins/vis_type_xy/index.ts
@@ -22,7 +22,7 @@ import { Legacy } from 'kibana';
22
23
import { LegacyPluginApi, LegacyPluginInitializer } from '../../types';
24
25
-export interface ConfigShema {
+export interface ConfigSchema {
26
visTypeXy: {
27
enabled: boolean;
28
};
@@ -35,7 +35,7 @@ const visTypeXyPluginInitializer: LegacyPluginInitializer = ({ Plugin }: LegacyP
35
publicDir: resolve(__dirname, 'public'),
36
uiExports: {
37
hacks: [resolve(__dirname, 'public/legacy')],
38
- injectDefaultVars(server): ConfigShema {
+ injectDefaultVars(server): ConfigSchema {
39
const config = server.config();
40
41
return {
0 commit comments