Show busy indicator on Address forget (#6066)

* Shw busy indicator on Address forget

* Remove debug logs
This commit is contained in:
Jaco Greeff
2017-07-16 11:05:36 +02:00
committed by Arkadiy Paronyan
parent 895350e77c
commit 4fc16a9eec
2 changed files with 10 additions and 2 deletions

View File

@@ -69,14 +69,14 @@ export default class ConfirmDialog extends Component {
<Portal
buttons={ [
<Button
disabled={ disabledDeny }
disabled={ disabledDeny || busy }
icon={ iconDeny || <CancelIcon /> }
key='deny'
label={ labelDeny || DEFAULT_NO }
onClick={ onDeny }
/>,
<Button
disabled={ disabledConfirm }
disabled={ disabledConfirm || busy }
icon={ iconConfirm || <CheckIcon /> }
key='confirm'
label={ labelConfirm || DEFAULT_YES }