Browse Source

Merge pull request #546 from meriadec/master

Fix Send modal forbid close while signing transaction, etc.
master
Gaëtan Renaudeau 7 years ago
committed by GitHub
parent
commit
e88d489081
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/components/modals/Send/index.js

2
src/components/modals/Send/index.js

@ -280,7 +280,7 @@ class SendModal extends Component<Props, State<*>> {
preventBackdropClick={!canClose}
onClose={canClose ? this.handleReset : undefined}
render={({ onClose }) => (
<ModalBody onClose={onClose}>
<ModalBody onClose={canClose ? onClose : undefined}>
<PollCounterValuesOnMount />
<SyncSkipUnderPriority priority={80} />
{account && <SyncOneAccountOnMount priority={81} accountId={account.id} />}

Loading…
Cancel
Save