diff options
author | ThibG <thib@sitedethib.com> | 2019-03-06 15:10:32 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-03-06 15:10:32 +0100 |
commit | b3668a79eca2d185ea57a9ffc2fa012db52e49f0 (patch) | |
tree | 13bea1b98ea1b40b17d6184a8bcd77ff9b2a70fb | |
parent | cb217444b842ac2952acdd83844b5440ebe36209 (diff) |
Disable the underlying button element when an ItemButton is disabled (#10194)
Fixes #10191
-rw-r--r-- | app/javascript/mastodon/components/icon_button.js | 2 |
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> |