yt-chat-components 2.0.15 → 2.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -80,7 +80,7 @@ const TabSelector = ({
|
|
|
80
80
|
</div>
|
|
81
81
|
<div className={styles.right}>
|
|
82
82
|
<div className={styles.tips}>Hi~ 我是{agentName}!</div>
|
|
83
|
-
<div className={styles.tipContent}
|
|
83
|
+
<div className={styles.tipContent} dangerouslySetInnerHTML={{ __html: welcomeWords }}/>
|
|
84
84
|
</div>
|
|
85
85
|
</div>
|
|
86
86
|
)
|
|
@@ -164,7 +164,7 @@ const TabSelector = ({
|
|
|
164
164
|
}}>
|
|
165
165
|
<div className={styles.mainContainer} style={{ marginLeft: isSimple ? "0" : '24px' }}>
|
|
166
166
|
{
|
|
167
|
-
welcomeWords && <div className={styles.welcome} dangerouslySetInnerHTML={welcomeWords}/>
|
|
167
|
+
welcomeWords && <div className={styles.welcome} dangerouslySetInnerHTML={{ __html: welcomeWords }}/>
|
|
168
168
|
}
|
|
169
169
|
<div
|
|
170
170
|
className={styles.tabSelector}
|