aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/ui/Modal
diff options
context:
space:
mode:
authorLibravatar vantezzen <hello@vantezzen.io>2019-09-20 12:34:56 +0200
committerLibravatar vantezzen <hello@vantezzen.io>2019-09-20 12:34:56 +0200
commit1d41b849cb7840a1611d34f20bfe636fc8b903dc (patch)
tree85d2fe39d8d805008d1ba1c2f458b0cda9224bea /src/components/ui/Modal
parentFix Todos menu (diff)
downloadferdium-app-1d41b849cb7840a1611d34f20bfe636fc8b903dc.tar.gz
ferdium-app-1d41b849cb7840a1611d34f20bfe636fc8b903dc.tar.zst
ferdium-app-1d41b849cb7840a1611d34f20bfe636fc8b903dc.zip
Implement Quick Switch feature
Diffstat (limited to 'src/components/ui/Modal')
-rw-r--r--src/components/ui/Modal/index.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/ui/Modal/index.js b/src/components/ui/Modal/index.js
index 63d858c47..0af521452 100644
--- a/src/components/ui/Modal/index.js
+++ b/src/components/ui/Modal/index.js
@@ -41,6 +41,8 @@ export default @injectCSS(styles) class Modal extends Component {
41 showClose, 41 showClose,
42 } = this.props; 42 } = this.props;
43 43
44 const appRoot = document.getElementById('root');
45
44 return ( 46 return (
45 <ReactModal 47 <ReactModal
46 isOpen={isOpen} 48 isOpen={isOpen}
@@ -53,6 +55,7 @@ export default @injectCSS(styles) class Modal extends Component {
53 portal={portal} 55 portal={portal}
54 onRequestClose={close} 56 onRequestClose={close}
55 shouldCloseOnOverlayClick={shouldCloseOnOverlayClick} 57 shouldCloseOnOverlayClick={shouldCloseOnOverlayClick}
58 appElement={appRoot}
56 > 59 >
57 {showClose && close && ( 60 {showClose && close && (
58 <button 61 <button