From 018cab4c085e9bd52b3c18e21a5388852eb7deab Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Wed, 9 Feb 2022 18:31:08 +0400 Subject: [PATCH 1/2] [DE mobile] Fix Bug 55393 --- apps/documenteditor/mobile/src/controller/ContextMenu.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx index cfc17f568..9bccbeee3 100644 --- a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx @@ -267,7 +267,7 @@ class ContextMenu extends ContextMenuController { }); } - if ( canFillForms && !locked ) { + if ( canFillForms && canCopy && !locked ) { itemsIcon.push({ event: 'paste', icon: 'icon-paste' From 6ca7553b3f7a864ab5baa428851990c10aa6e058 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Thu, 10 Feb 2022 20:28:08 +0400 Subject: [PATCH 2/2] [SSE mobile] Fix Bug 55252 --- .../mobile/src/view/edit/EditCell.jsx | 34 ++++++++++--------- 1 file changed, 18 insertions(+), 16 deletions(-) diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx index 18dd0518c..2ab4ceb8b 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx @@ -111,22 +111,24 @@ const EditCell = props => { {_t.textCellStyles} {cellStyles.length ? ( - - {arraySlides.map((_, indexSlide) => { - let stylesSlide = cellStyles.slice(indexSlide * 9, (indexSlide * 9) + 9); - - return ( - - - {stylesSlide.map((elem, index) => ( - props.onStyleClick(elem.name)}> -
-
- ))} -
-
- )})} -
+
+
+ {arraySlides.map((_, indexSlide) => { + let stylesSlide = cellStyles.slice(indexSlide * 9, (indexSlide * 9) + 9); + + return ( +
+ + {stylesSlide.map((elem, index) => ( + props.onStyleClick(elem.name)}> +
+
+ ))} +
+
+ )})} +
+
) : null} }