From b8ccf34edb24d4f96dfdab618fb078f902aa795f Mon Sep 17 00:00:00 2001 From: youngq Date: Thu, 17 Oct 2024 17:31:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=AD=A3=E5=9C=A8=E8=AF=B4?= =?UTF-8?q?=E8=AF=9D=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/page/Meeting/CurrentSpeakUserWindow/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/page/Meeting/CurrentSpeakUserWindow/index.tsx b/src/page/Meeting/CurrentSpeakUserWindow/index.tsx index 3187d09..56ca1c0 100644 --- a/src/page/Meeting/CurrentSpeakUserWindow/index.tsx +++ b/src/page/Meeting/CurrentSpeakUserWindow/index.tsx @@ -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 ( <>
-
- {inputValue ? `正在说话:${inputValue}` : '无人说话'} +
+ {inputValue ? `正在说话: ${inputValue}` : `正在说话:`}