Skip to content

Commit

Permalink
[Canvas] Fixes embed flyout (elastic#64468)
Browse files Browse the repository at this point in the history
  • Loading branch information
cqliu1 committed Apr 27, 2020
1 parent b1dc9ab commit 6d0fe14
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ export const ElementMenu: FunctionComponent<Props> = ({

const hideAssetModal = () => setAssetModalVisible(false);
const showAssetModal = () => setAssetModalVisible(true);
const showEmbedPanel = () => setEmbedPanelVisible(false);
const hideEmbedPanel = () => setEmbedPanelVisible(false);
const showEmbedPanel = () => setEmbedPanelVisible(true);
const hideSavedElementsModal = () => setSavedElementsModalVisible(false);
const showSavedElementsModal = () => setSavedElementsModalVisible(true);

Expand Down

0 comments on commit 6d0fe14

Please sign in to comment.