麦克风显示优化

This commit is contained in:
yj 2024-08-12 15:16:34 +08:00
parent c93809e712
commit 1417befcd2
2 changed files with 2 additions and 2 deletions

View File

@ -33,12 +33,12 @@
>img { >img {
width: 18px; width: 18px;
margin-right: 4px;
} }
>span { >span {
font-size: 16px; font-size: 16px;
color: #EEEEEE; color: #EEEEEE;
margin-left: 4px;
} }
} }
} }

View File

@ -1266,7 +1266,7 @@ const meetingContentUser = (item: any) => {
<img src={ImageUrl.icon32} alt="" /> <img src={ImageUrl.icon32} alt="" />
</div> : null} </div> : null}
<div className={styles.meetingContentUserName}> <div className={styles.meetingContentUserName}>
<img src={item.enableMicr ? ImageUrl.icon22 : ImageUrl.icon22Active} alt="" /> {!item.enableMicr ? <img src={item.enableMicr ? ImageUrl.icon22 : ImageUrl.icon22Active} alt="" /> : ''}
<span>{item.userName}</span> <span>{item.userName}</span>
</div> </div>
</div> </div>