Merge branch 'feature/files' of github.com:ONLYOFFICE/AppServer into feature/files

This commit is contained in:
TatianaLopaeva 2020-09-15 17:40:31 +03:00
commit 96d0d94535

View File

@ -222,7 +222,8 @@ class Form extends Component {
window.open(homepage, "_self");
})
.catch(error => {
this.setState({ errorText: error, isLoading: false });
let err = error.data.error.message;
this.setState({ errorText: err, isLoading: false });
});
};