Merge pull request #1492 from ONLYOFFICE/fix/fix-plugins

[mobile] Fix bug 54873
This commit is contained in:
Julia Radzhabova 2022-01-19 12:45:58 +03:00 committed by GitHub
commit 5aada4b76b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -121,7 +121,7 @@ const PluginsController = inject('storeAppOptions')(observer(props => {
};
const pluginClose = plugin => {
if (plugin) {
if (plugin && modal) {
modal.close();
}
};