37 lines
1.3 KiB
Diff
37 lines
1.3 KiB
Diff
diff --git a/apps/documenteditor/mobile/src/lib/patch.jsx b/apps/documenteditor/mobile/src/lib/patch.jsx
|
|
index 963aca451..1ee48e856 100644
|
|
--- a/apps/documenteditor/mobile/src/lib/patch.jsx
|
|
+++ b/apps/documenteditor/mobile/src/lib/patch.jsx
|
|
@@ -4,7 +4,7 @@ const EditorUIController = () => {
|
|
};
|
|
|
|
EditorUIController.isSupportEditFeature = () => {
|
|
- return false
|
|
+ return true
|
|
};
|
|
|
|
EditorUIController.getToolbarOptions = () => {
|
|
diff --git a/apps/presentationeditor/mobile/src/lib/patch.jsx b/apps/presentationeditor/mobile/src/lib/patch.jsx
|
|
index ec7b37a2c..bfd879583 100644
|
|
--- a/apps/presentationeditor/mobile/src/lib/patch.jsx
|
|
+++ b/apps/presentationeditor/mobile/src/lib/patch.jsx
|
|
@@ -1,6 +1,6 @@
|
|
|
|
const EditorUIController = () => null;
|
|
|
|
-EditorUIController.isSupportEditFeature = () => false;
|
|
+EditorUIController.isSupportEditFeature = () => true;
|
|
|
|
export default EditorUIController;
|
|
diff --git a/apps/spreadsheeteditor/mobile/src/lib/patch.jsx b/apps/spreadsheeteditor/mobile/src/lib/patch.jsx
|
|
index ec7b37a2c..bfd879583 100644
|
|
--- a/apps/spreadsheeteditor/mobile/src/lib/patch.jsx
|
|
+++ b/apps/spreadsheeteditor/mobile/src/lib/patch.jsx
|
|
@@ -1,6 +1,6 @@
|
|
|
|
const EditorUIController = () => null;
|
|
|
|
-EditorUIController.isSupportEditFeature = () => false;
|
|
+EditorUIController.isSupportEditFeature = () => true;
|
|
|
|
export default EditorUIController;
|