Sync user settings (#45)
This commit is contained in:
parent
5943a796e4
commit
02d8107b50
1 changed files with 12 additions and 0 deletions
|
@ -410,6 +410,18 @@ class PublishPage extends React.PureComponent {
|
||||||
this.onComponentFocused();
|
this.onComponentFocused();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (publishFormValues) {
|
||||||
|
if (publishFormValues.thumbnail && !this.state.uploadedThumbnailUri) {
|
||||||
|
const { thumbnail } = publishFormValues;
|
||||||
|
updatePublishFormState({ currentThumbnailUri: thumbnail, uploadedThumbnailUri: thumbnail });
|
||||||
|
this.setState({
|
||||||
|
currentThumbnailUri: thumbnail,
|
||||||
|
uploadedThumbnailUri: thumbnail,
|
||||||
|
uploadThumbnailStarted: false,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
this.state.currentPhase === Constants.PHASE_DETAILS &&
|
this.state.currentPhase === Constants.PHASE_DETAILS &&
|
||||||
prevDrawerStack[prevDrawerStack.length - 1].route === Constants.DRAWER_ROUTE_PUBLISH_FORM &&
|
prevDrawerStack[prevDrawerStack.length - 1].route === Constants.DRAWER_ROUTE_PUBLISH_FORM &&
|
||||||
|
|
Loading…
Reference in a new issue