Skip to content

Commit

Permalink
Merge pull request #832 from input-output-hk/chore/ddw-156-clicking-o…
Browse files Browse the repository at this point in the history
…utside-of-the-dialogs-should-not-close-them-during-wallet-creation

Chore/ddw 156 Clicking outside of the dialogs should not close them during wallet creation
  • Loading branch information
DominikGuzei committed Apr 5, 2018
2 parents d7d87ae + efc3f58 commit 2cd47b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export default class WalletBackupPrivacyWarningDialog extends Component<Props> {
className={dialogClasses}
title={intl.formatMessage(globalMessages.recoveryPhraseDialogTitle)}
actions={actions}
closeOnOverlayClick
closeOnOverlayClick={false}
onClose={onCancelBackup}
closeButton={<DialogCloseButton onClose={onCancelBackup} />}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default class WalletRecoveryPhraseDisplayDialog extends Component<Props>
title={intl.formatMessage(globalMessages.recoveryPhraseDialogTitle)}
actions={actions}
onClose={onCancelBackup}
closeOnOverlayClick
closeOnOverlayClick={false}
closeButton={<DialogCloseButton onClose={onCancelBackup} />}
>
<WalletRecoveryInstructions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export default class WalletRecoveryPhraseEntryDialog extends Component<Props> {
className={dialogClasses}
title={intl.formatMessage(globalMessages.recoveryPhraseDialogTitle)}
actions={actions}
closeOnOverlayClick
closeOnOverlayClick={false}
onClose={onCancelBackup}
closeButton={<DialogCloseButton onClose={onCancelBackup} />}
backButton={!isValid ? <DialogBackButton onBack={onRestartBackup} /> : null}
Expand Down

0 comments on commit 2cd47b5

Please sign in to comment.