Fix Bug 59743
This commit is contained in:
parent
668c59bd3e
commit
e680106071
|
@ -401,7 +401,7 @@ define([
|
||||||
if (value.Get_SmallCaps() !== undefined)
|
if (value.Get_SmallCaps() !== undefined)
|
||||||
proptext += ((value.Get_SmallCaps() ? '' : me.textNot) + me.textSmallCaps + ', ');
|
proptext += ((value.Get_SmallCaps() ? '' : me.textNot) + me.textSmallCaps + ', ');
|
||||||
if (value.Get_VertAlign() !== undefined)
|
if (value.Get_VertAlign() !== undefined)
|
||||||
proptext += (((value.Get_VertAlign()==1) ? me.textSuperScript : ((value.Get_VertAlign()==2) ? me.textSubScript : me.textBaseline)) + ', ');
|
proptext += (((value.Get_VertAlign()===Asc.vertalign_SuperScript) ? me.textSuperScript : ((value.Get_VertAlign()===Asc.vertalign_SubScript) ? me.textSubScript : me.textBaseline)) + ', ');
|
||||||
if (value.Get_Color() !== undefined)
|
if (value.Get_Color() !== undefined)
|
||||||
proptext += (me.textColor + ', ');
|
proptext += (me.textColor + ', ');
|
||||||
if (value.Get_Highlight() !== undefined)
|
if (value.Get_Highlight() !== undefined)
|
||||||
|
|
|
@ -277,7 +277,7 @@ class ReviewChange extends Component {
|
||||||
}
|
}
|
||||||
if (value.Get_VertAlign() !== undefined) {
|
if (value.Get_VertAlign() !== undefined) {
|
||||||
proptext.length > 0 && proptext.push(<label key={`${Asc.c_oAscRevisionsChangeType.TextPr}-08`}>, </label>);
|
proptext.length > 0 && proptext.push(<label key={`${Asc.c_oAscRevisionsChangeType.TextPr}-08`}>, </label>);
|
||||||
proptext.push(<label key={`${Asc.c_oAscRevisionsChangeType.TextPr}-8`}>{((value.Get_VertAlign() == 1) ? _t.textSuperScript : ((value.Get_VertAlign() == 2) ? _t.textSubScript : _t.textBaseline))}</label>);
|
proptext.push(<label key={`${Asc.c_oAscRevisionsChangeType.TextPr}-8`}>{((value.Get_VertAlign() === Asc.vertalign_SuperScript) ? _t.textSuperScript : ((value.Get_VertAlign() === Asc.vertalign_SubScript) ? _t.textSubScript : _t.textBaseline))}</label>);
|
||||||
}
|
}
|
||||||
if (value.Get_Color() !== undefined) {
|
if (value.Get_Color() !== undefined) {
|
||||||
proptext.length > 0 && proptext.push(<label key={`${Asc.c_oAscRevisionsChangeType.TextPr}-09`}>, </label>);
|
proptext.length > 0 && proptext.push(<label key={`${Asc.c_oAscRevisionsChangeType.TextPr}-09`}>, </label>);
|
||||||
|
|
Loading…
Reference in a new issue