yangjie #22
|
|
@ -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 >
|
||||
</>
|
||||
|
|
|
|||
Loading…
Reference in New Issue