From 7361151203f6662c2fa0859a7b2d3c42fe0b05a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Tue, 18 Jul 2017 13:35:24 +0200 Subject: [PATCH] feat(dialog): add missing export for actionTypes The full-screen module uses the HIDE_DIALOG action to re-engage the full-screen mode. --- react/features/base/dialog/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/react/features/base/dialog/index.js b/react/features/base/dialog/index.js index 582e1f9dd..b2e9c09f6 100644 --- a/react/features/base/dialog/index.js +++ b/react/features/base/dialog/index.js @@ -1,4 +1,5 @@ export * from './actions'; +export * from './actionTypes'; export * from './components'; import './reducer';