]> cat aescling's git repositories - mastodon.git/commitdiff
Do not expand toot when clicking on a poll option (#11067)
authorThibG <thib@sitedethib.com>
Wed, 12 Jun 2019 22:16:46 +0000 (00:16 +0200)
committerEugen Rochko <eugen@zeonfederated.com>
Wed, 12 Jun 2019 22:16:46 +0000 (00:16 +0200)
Fixes regression introduced by e9ddd5a159c821e3fb75ff997f40a4bca35c326c

app/javascript/mastodon/components/status_content.js

index 01b4351be246e7233d2f259f0e395a95e58f5531..06f5b4aad77aca383526028e4b4bae30e2a6218c 100644 (file)
@@ -107,8 +107,12 @@ export default class StatusContent extends React.PureComponent {
     const [ startX, startY ] = this.startXY;
     const [ deltaX, deltaY ] = [Math.abs(e.clientX - startX), Math.abs(e.clientY - startY)];
 
-    if (e.target.localName === 'button' || e.target.localName === 'a' || (e.target.parentNode && (e.target.parentNode.localName === 'button' || e.target.parentNode.localName === 'a'))) {
-      return;
+    let element = e.target;
+    while (element) {
+      if (element.localName === 'button' || element.localName === 'a' || element.localName === 'label') {
+        return;
+      }
+      element = element.parentNode;
     }
 
     if (deltaX + deltaY < 5 && e.button === 0 && this.props.onClick) {