|
|
@@ -892,7 +892,13 @@ export default {
|
|
|
.map((tagItem) => tagItem.style)
|
|
|
.join(';');
|
|
|
|
|
|
- const styleObj = combinedStyle ? this.parseStyleToObject(combinedStyle) : null;
|
|
|
+ const styleObj = combinedStyle
|
|
|
+ ? this.parseStyleToObject(combinedStyle)
|
|
|
+ : {
|
|
|
+ fontSize:
|
|
|
+ this.data.unified_attrib && this.data.unified_attrib.font_size ? this.data.unified_attrib.font_size : '',
|
|
|
+ fontFamily: this.data.unified_attrib && this.data.unified_attrib.font ? this.data.unified_attrib.font : '',
|
|
|
+ };
|
|
|
|
|
|
return {
|
|
|
type: 'text',
|