From 3ab7e17ef80be831354b63a02098cd5060ac984c Mon Sep 17 00:00:00 2001 From: ShimaginAndrey Date: Tue, 15 Jun 2021 16:11:17 +0300 Subject: [PATCH] Fix Bug 50776 --- apps/documenteditor/mobile/src/controller/Error.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/Error.jsx b/apps/documenteditor/mobile/src/controller/Error.jsx index 21b8d35e4..647fde4a9 100644 --- a/apps/documenteditor/mobile/src/controller/Error.jsx +++ b/apps/documenteditor/mobile/src/controller/Error.jsx @@ -204,8 +204,8 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu if (id === Asc.c_oAscError.ID.Warning && btn === 'ok' && (storeAppOptions.canDownload || storeAppOptions.canDownloadOrigin)) { api.asc_DownloadOrigin(); } else if(id === Asc.c_oAscError.ID.SplitCellMaxRows || - Asc.c_oAscError.ID.SplitCellMaxCols || - Asc.c_oAscError.ID.SplitCellRowsDivider && btn === 'ok' && (storeAppOptions.canDownload || storeAppOptions.canDownloadOrigin)) { + id === Asc.c_oAscError.ID.SplitCellMaxCols || + id === Asc.c_oAscError.ID.SplitCellRowsDivider) { Common.Notifications.trigger('showSplitModal',true); } storeAppOptions.changeEditingRights(false);