We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0468355 commit 1f96dcdCopy full SHA for 1f96dcd
1 file changed
assets/source/setup-guide/app/views/LandingPageApp.js
@@ -56,8 +56,19 @@ const LandingPageApp = () => {
56
<FlexBlock key={index}>
57
<img src={ item.image_url } />
58
<Text variant="subtitle">{ item.title }</Text>
59
- <Text variant="body">{ item.text }</Text>
60
- { item?.extra && <Text variant="body" className="extra">{ item.text }</Text> }
+ <Text variant="body"
+ dangerouslySetInnerHTML={ {
61
+ __html: item.text,
62
+ } }
63
+ />
64
+ { item?.extra &&
65
+ <Text
66
+ variant="body"
67
+ className="extra"
68
69
+ __html: item.extra,
70
71
+ /> }
72
</FlexBlock>
73
))
74
}
0 commit comments