diff --git a/apps/spreadsheeteditor/mobile/src/store/focusObjects.js b/apps/spreadsheeteditor/mobile/src/store/focusObjects.js index 0805e1468..8058e49c3 100644 --- a/apps/spreadsheeteditor/mobile/src/store/focusObjects.js +++ b/apps/spreadsheeteditor/mobile/src/store/focusObjects.js @@ -136,11 +136,9 @@ export class storeFocusObjects { @computed get shapeObject() { const shapes = []; - console.log(this._focusObjects); for (let object of this._focusObjects) { if (object.get_ObjectType() === Asc.c_oAscTypeSelectElement.Image) { if (object.get_ObjectValue() && object.get_ObjectValue().get_ShapeProperties()) { - console.log(object); shapes.push(object); } } @@ -155,10 +153,8 @@ export class storeFocusObjects { @computed get imageObject() { const images = []; - console.log(this._focusObjects); for (let object of this._focusObjects) { if (object.get_ObjectType() === Asc.c_oAscTypeSelectElement.Image) { - console.log(object); images.push(object); } } diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx index 48272c221..7e809c3f6 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditShape.jsx @@ -12,7 +12,6 @@ const EditShape = props => { // const selections = storeFocusObjects.selections; // console.log(selections); const shapeObject = storeFocusObjects.shapeObject; - console.log(shapeObject); const canFill = shapeObject.get_ShapeProperties().asc_getCanFill(); return (