Merge pull request #2288 from matrix-org/dbkr/fix_continue_disabled_download

Forgot to enable continue button on download
pull/21833/head
David Baker 2018-11-23 07:46:03 +00:00 committed by GitHub
commit a9ae7f3eef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ export default React.createClass({
<DialogButtons primaryButton={_t("I've made a copy")}
onPrimaryButtonClick={this._createBackup}
hasCancel={false}
disabled={!this.state.copied}
disabled={!this.state.copied && !this.state.downloaded}
/>
</div>;
},