yangjie #22

Merged
yangqiang merged 99 commits from yangjie into master 2024-10-22 16:11:46 +08:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 0939d6154b - Show all commits

View File

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