From 0db88eeab044a33705bf37dbaa740d347345c194 Mon Sep 17 00:00:00 2001 From: Aaron Caldwell Date: Thu, 5 Mar 2020 08:15:29 -0700 Subject: [PATCH] Move full screen action to legacy --- x-pack/legacy/plugins/maps/public/actions/ui_actions.js | 7 +++++++ x-pack/plugins/maps/public/actions/ui_actions.js | 7 ------- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/x-pack/legacy/plugins/maps/public/actions/ui_actions.js b/x-pack/legacy/plugins/maps/public/actions/ui_actions.js index 14cd80825e6dc3..9a6003be1d8900 100644 --- a/x-pack/legacy/plugins/maps/public/actions/ui_actions.js +++ b/x-pack/legacy/plugins/maps/public/actions/ui_actions.js @@ -18,6 +18,13 @@ export const HIDE_TOC_DETAILS = 'HIDE_TOC_DETAILS'; export const UPDATE_INDEXING_STAGE = 'UPDATE_INDEXING_STAGE'; // End temporary redundancy +export function exitFullScreen() { + return { + type: SET_FULL_SCREEN, + isFullScreen: false, + }; +} + export function updateFlyout(display) { return { type: UPDATE_FLYOUT, diff --git a/x-pack/plugins/maps/public/actions/ui_actions.js b/x-pack/plugins/maps/public/actions/ui_actions.js index d488d434858ba4..b5caf4d75d6b18 100644 --- a/x-pack/plugins/maps/public/actions/ui_actions.js +++ b/x-pack/plugins/maps/public/actions/ui_actions.js @@ -17,10 +17,3 @@ export const SHOW_TOC_DETAILS = 'SHOW_TOC_DETAILS'; export const HIDE_TOC_DETAILS = 'HIDE_TOC_DETAILS'; export const UPDATE_INDEXING_STAGE = 'UPDATE_INDEXING_STAGE'; // End temporary redundancy - -export function exitFullScreen() { - return { - type: SET_FULL_SCREEN, - isFullScreen: false, - }; -}