about summary refs log tree commit diff
path: root/app/javascript/mastodon/components/icon_button.js
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2019-03-06 15:10:32 +0100
committerEugen Rochko <eugen@zeonfederated.com>2019-03-06 15:10:32 +0100
commitb3668a79eca2d185ea57a9ffc2fa012db52e49f0 (patch)
tree13bea1b98ea1b40b17d6184a8bcd77ff9b2a70fb /app/javascript/mastodon/components/icon_button.js
parentcb217444b842ac2952acdd83844b5440ebe36209 (diff)
Disable the underlying button element when an ItemButton is disabled (#10194)
Fixes #10191
Diffstat (limited to 'app/javascript/mastodon/components/icon_button.js')
-rw-r--r--app/javascript/mastodon/components/icon_button.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/javascript/mastodon/components/icon_button.js b/app/javascript/mastodon/components/icon_button.js
index fbb42f78f..9d8a8d06b 100644
--- a/app/javascript/mastodon/components/icon_button.js
+++ b/app/javascript/mastodon/components/icon_button.js
@@ -86,6 +86,7 @@ export default class IconButton extends React.PureComponent {
           onClick={this.handleClick}
           style={style}
           tabIndex={tabIndex}
+          disabled={disabled}
         >
           <Icon id={icon} fixedWidth aria-hidden='true' />
         </button>
@@ -104,6 +105,7 @@ export default class IconButton extends React.PureComponent {
             onClick={this.handleClick}
             style={style}
             tabIndex={tabIndex}
+            disabled={disabled}
           >
             <Icon id={icon} style={{ transform: `rotate(${rotate}deg)` }} fixedWidth aria-hidden='true' />
           </button>