We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65c271c commit dcab4faCopy full SHA for dcab4fa
1 file changed
x-pack/legacy/plugins/integrations_manager/public/plugin.tsx
@@ -36,10 +36,11 @@ export interface PluginCore {
36
export class Plugin {
37
constructor(initializerContext: PluginInitializerContext) {}
38
// called when plugin is setting up during Kibana's startup sequence
39
- public setup(core: CoreSetup) {}
+ public setup(core: CoreSetup) {
40
+ setClient(core.http.fetch);
41
+ }
42
// called after all plugins are set up
43
public start(core: PluginCore) {
- setClient(core.http.fetch);
44
ReactDOM.render(<App core={core} />, core.renderTo);
45
}
46
0 commit comments