|
|
@@ -16,7 +16,7 @@ function Bwzwq({ sItem, selectedTime, index, isShowLine, setIsShowLine }: yearTy
|
|
|
<div className='lInfo'>
|
|
|
<div className='item' key={index}>
|
|
|
<div className='lTitle songFont'>{sItem.items[0].title}</div>
|
|
|
- <div className='lText'>{sItem.items[0].txt}</div>
|
|
|
+ <div className='lText' dangerouslySetInnerHTML={{ __html: sItem.items[0].txt }}></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -57,7 +57,7 @@ function Bwzwq({ sItem, selectedTime, index, isShowLine, setIsShowLine }: yearTy
|
|
|
<div className='lInfo'>
|
|
|
<div className='item' key={index}>
|
|
|
<div className='lTitle songFont'>{sItem.items[1].title}</div>
|
|
|
- <div className='lText'>{sItem.items[1].txt}</div>
|
|
|
+ <div className='lText' dangerouslySetInnerHTML={{ __html: sItem.items[1].txt }}></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|