about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/dropdown_menu.js
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-08-21 14:14:28 +0200
committerGitHub <noreply@github.com>2020-08-21 14:14:28 +0200
commitc7cfd4e67aedb38cba3ee452e18bd086e30e2e5d (patch)
tree831a5cf5a202c053e4af69bd1bc3d4f13912dd7c /app/javascript/mastodon/components/dropdown_menu.js
parent9b2648b30adfa57dc12153c7a4e0fd9ac2f187dd (diff)
Fix scrolling issues when closing some dropdown menus (#14606)
Diffstat (limited to 'app/javascript/mastodon/components/dropdown_menu.js')
-rw-r--r--app/javascript/mastodon/components/dropdown_menu.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/components/dropdown_menu.js b/app/javascript/mastodon/components/dropdown_menu.js
index 4734e0f3f..09e3c9df8 100644
--- a/app/javascript/mastodon/components/dropdown_menu.js
+++ b/app/javascript/mastodon/components/dropdown_menu.js
@@ -205,7 +205,7 @@ export default class Dropdown extends React.PureComponent {
 
   handleClose = () => {
     if (this.activeElement) {
-      this.activeElement.focus();
+      this.activeElement.focus({ preventScroll: true });
       this.activeElement = null;
     }
     this.props.onClose(this.state.id);