[DE mobile] Correct opening snackbar
This commit is contained in:
parent
5c00b9fa57
commit
a83c32c793
|
@ -81,15 +81,15 @@ const Settings = props => {
|
|||
}, 0);
|
||||
};
|
||||
|
||||
const onChangeMobileView = () => {
|
||||
const api = Common.EditorApi.get()
|
||||
const onChangeMobileView = async () => {
|
||||
const api = Common.EditorApi.get();
|
||||
const appOptions = props.storeAppOptions;
|
||||
|
||||
appOptions.changeMobileView();
|
||||
api.ChangeReaderMode();
|
||||
await appOptions.changeMobileView();
|
||||
await api.ChangeReaderMode();
|
||||
|
||||
if(Device.phone) {
|
||||
closeModal();
|
||||
await closeModal();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -166,9 +166,9 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props =>
|
|||
<Toggle checked={isMobileView} onToggleChange={() => {
|
||||
props.onChangeMobileView();
|
||||
props.openOptions('snackbar');
|
||||
setTimeout( () => {
|
||||
setTimeout(() => {
|
||||
props.closeOptions('snackbar');
|
||||
}, 1000);
|
||||
}, 1000);
|
||||
}} />
|
||||
</ListItem>
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue