修改正在说话文字提示

This commit is contained in:
yj 2024-10-16 11:33:36 +08:00
parent c66f60d2ab
commit 0939d6154b
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@ const CurrentSpeakUserWindow: React.FC = () => {
return (
<>
<div className={styles.currentSpeakUserWindow}>
<div title={inputValue ? `${inputValue}正在说话` : '无人说话'} className='drag'>
{inputValue ? `${inputValue}正在说话` : '无人说话'}
<div title={inputValue ? `正在说话:${inputValue}` : '无人说话'} className='drag'>
{inputValue ? `正在说话:${inputValue}` : '无人说话'}
</div>
</div >
</>