diff options
author | ThibG <thib@sitedethib.com> | 2018-05-11 23:04:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-11 23:04:12 +0200 |
commit | bd4decb7db1d0be794e0db535332c741477922f8 (patch) | |
tree | 2279979642a1b2c33b45e5ef6c449bfe856a90a6 /app/javascript/flavours/glitch/features | |
parent | da8897aaefeedf281a72f2e3b1b88ea0573e481e (diff) | |
parent | 769a48495c8eac64a80f10134be5362ddf8ca107 (diff) |
Merge pull request #479 from ThibG/glitch-soc/fixes/modal-root-keyup
Fix root modal's keyup handling (Fixes #478)
Diffstat (limited to 'app/javascript/flavours/glitch/features')
-rw-r--r-- | app/javascript/flavours/glitch/features/ui/components/modal_root.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/features/ui/components/modal_root.js b/app/javascript/flavours/glitch/features/ui/components/modal_root.js index 320c039a4..cdb6dc9d0 100644 --- a/app/javascript/flavours/glitch/features/ui/components/modal_root.js +++ b/app/javascript/flavours/glitch/features/ui/components/modal_root.js @@ -59,7 +59,7 @@ export default class ModalRoot extends React.PureComponent { const visible = !!type; return ( - <Base onClose={onClose}> + <Base onClose={onClose} noEsc={props.noEsc}> {visible && ( <BundleContainer fetchComponent={MODAL_COMPONENTS[type]} loading={this.renderLoading(type)} error={this.renderError} renderDelay={200}> {(SpecificComponent) => <SpecificComponent {...props} onClose={onClose} />} |