mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
fix(connection-indicator): Hide indicator circle when ghost icon is hidden.
This commit is contained in:
committed by
Saúl Ibarra Corretgé
parent
9ab16a0a5c
commit
072c29c0f9
@@ -180,6 +180,10 @@ class ConnectionIndicator extends AbstractConnectionIndicator<Props, AbstractSta
|
||||
const { INACTIVE, INTERRUPTED } = JitsiParticipantConnectionStatus;
|
||||
|
||||
if (_connectionStatus === INACTIVE) {
|
||||
if (this.props._connectionIndicatorInactiveDisabled) {
|
||||
return 'status-disabled';
|
||||
}
|
||||
|
||||
return 'status-other';
|
||||
} else if (_connectionStatus === INTERRUPTED) {
|
||||
return 'status-lost';
|
||||
|
||||
Reference in New Issue
Block a user