Merge pull request #1940 from ONLYOFFICE/feature/fix-bugs
[DE mobile] Fix Bug 58892
This commit is contained in:
commit
1ccdbafac0
|
@ -502,7 +502,7 @@ const EditText = props => {
|
|||
const storeTextSettings = props.storeTextSettings;
|
||||
const storeFocusObjects = props.storeFocusObjects;
|
||||
const shapeObject = storeFocusObjects.shapeObject;
|
||||
const shapePr = shapeObject.get_ShapeProperties();
|
||||
const shapePr = shapeObject && shapeObject.get_ShapeProperties();
|
||||
const inSmartArt = shapePr && shapePr.asc_getFromSmartArt();
|
||||
const inSmartArtInternal = shapePr && shapePr.asc_getFromSmartArtInternal();
|
||||
const fontName = storeTextSettings.fontName || t('Edit.textFonts');
|
||||
|
|
Loading…
Reference in a new issue