[Bug] `textProps.fontWeight` is ignored during rendering
Version: 13.0
Problem:
textProps values such as fontWeight set in designOption.json are displayed correctly in the Captivate UI, but are ignored in the final rendering and overridden by inline styles (e.g., font-weight: normal;). Other textProps (like textAlign) work as expected.
{
"tag": "slide-item-subtitle",
"preset": "text-body-6",
"customStyles": {
"all": {}
},
"customProperties": {
"alignmentAndSpacing": {},
"textProps": {
"fontWeight": "600",
"textAlign": "center"
}
}
},
In the rendered output, inline styles appear such as:
font-weight: normal;
Impact:
- Inconsistent results between editor preview and actual output
- Paragraph styles cannot be reliably overridden
- UI feedback is misleading (shows correct formatting, but renders incorrectly)
Expected behavior:
textProps should be respected during rendering and should not be overridden by generated inline styles.
1
vote