Skip to content

Commit

Permalink
review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
nreese committed Aug 11, 2020
1 parent 72dc5f9 commit aa2a57e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions x-pack/plugins/maps/public/kibana_services.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,12 +178,12 @@ export const getIsGoldPlus = () => {
return isGoldPlus;
};

let _embeddableService;
export const setEmbeddableService = (embeddableService) => {
_embeddableService = embeddableService;
let embeddableService;
export const setEmbeddableService = (_embeddableService) => {
embeddableService = _embeddableService;
};
export const getEmbeddableService = () => {
return _embeddableService;
return embeddableService;
};

export let navigateToApp;
Expand Down

0 comments on commit aa2a57e

Please sign in to comment.