about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/components/icon_button.js
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2019-03-06 15:10:32 +0100
committerThibaut Girka <thib@sitedethib.com>2019-03-06 22:40:17 +0100
commit6e295beab26089595b0ca067beb8a47cb11f8e3e (patch)
tree170efea708205d3fc4fd9b39098051ed2b68e917 /app/javascript/flavours/glitch/components/icon_button.js
parentcf4fd8bcfe22c8ef8e6e2a86149dec3b39adc93c (diff)
[Glitch] Disable the underlying button element when an ItemButton is disabled
Port b3668a79eca2d185ea57a9ffc2fa012db52e49f0 to glitch-soc
Diffstat (limited to 'app/javascript/flavours/glitch/components/icon_button.js')
-rw-r--r--app/javascript/flavours/glitch/components/icon_button.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/javascript/flavours/glitch/components/icon_button.js b/app/javascript/flavours/glitch/components/icon_button.js
index dfbe75110..6a25794d3 100644
--- a/app/javascript/flavours/glitch/components/icon_button.js
+++ b/app/javascript/flavours/glitch/components/icon_button.js
@@ -107,6 +107,7 @@ export default class IconButton extends React.PureComponent {
           onClick={this.handleClick}
           style={style}
           tabIndex={tabIndex}
+          disabled={disabled}
         >
           <i className={`fa fa-fw fa-${icon}`} aria-hidden='true' />
         </button>
@@ -125,6 +126,7 @@ export default class IconButton extends React.PureComponent {
             onClick={this.handleClick}
             style={style}
             tabIndex={tabIndex}
+            disabled={disabled}
           >
             <i style={{ transform: `rotate(${rotate}deg)` }} className={`fa fa-fw fa-${icon}`} aria-hidden='true' />
             {this.props.label}