yangjie #22

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

View File

@ -9,7 +9,7 @@ const CurrentSpeakUserWindow: React.FC = () => {
switch (type) {
case 'currentSpeakUser':
if (currentSpeakUser.length) {
setInputValue(currentSpeakUser.join(','))
setInputValue(currentSpeakUser.join('; '))
} else {
setInputValue('')
}
@ -22,8 +22,8 @@ const CurrentSpeakUserWindow: React.FC = () => {
return (
<>
<div className={styles.currentSpeakUserWindow}>
<div title={inputValue ? `正在说话:${inputValue}` : '无人说话'}>
{inputValue ? `正在说话:${inputValue}` : '无人说话'}
<div title={inputValue ? `正在说话: ${inputValue}` : `正在说话:`}>
{inputValue ? `正在说话: ${inputValue}` : `正在说话:`}
</div>
</div >
</>