diff options
author | Takeshi Umeda <noel.yoshiba@gmail.com> | 2021-08-06 19:14:13 +0900 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2021-08-09 23:45:58 +0200 |
commit | 8681ef85d0728b9d34dc62785fab6fcec30ba95c (patch) | |
tree | f048b304f0d4f0f49e51c2edb8b74ccae6ac89e6 /app/javascript/flavours/glitch/features/compose | |
parent | 8d55cb7d711723fe2a35377ee2443cb11de11cc3 (diff) |
[Glitch] Fix logout link not working in safari
Port b2875b1864d5bd72e6902ffc842d1be6818c210e to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch/features/compose')
-rw-r--r-- | app/javascript/flavours/glitch/features/compose/containers/header_container.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/features/compose/containers/header_container.js b/app/javascript/flavours/glitch/features/compose/containers/header_container.js index b4dcb4d56..2f0da48c8 100644 --- a/app/javascript/flavours/glitch/features/compose/containers/header_container.js +++ b/app/javascript/flavours/glitch/features/compose/containers/header_container.js @@ -27,6 +27,7 @@ const mapDispatchToProps = (dispatch, { intl }) => ({ dispatch(openModal('CONFIRM', { message: intl.formatMessage(messages.logoutMessage), confirm: intl.formatMessage(messages.logoutConfirm), + closeWhenConfirm: false, onConfirm: () => logOut(), })); }, |