fix: Drops participants count white background. (#12416)
* fix: Drops participants count white background. Currently, it is white background with white icon. * squash: Drop unused import.
This commit is contained in:
parent
ff29196f3a
commit
601e21ffcd
|
@ -6,7 +6,6 @@ import type { Dispatch } from 'redux';
|
||||||
import { openDialog } from '../../../base/dialog';
|
import { openDialog } from '../../../base/dialog';
|
||||||
import { IconUserGroups } from '../../../base/icons';
|
import { IconUserGroups } from '../../../base/icons';
|
||||||
import { Label } from '../../../base/label';
|
import { Label } from '../../../base/label';
|
||||||
import { COLORS } from '../../../base/label/constants';
|
|
||||||
import { getParticipantCount } from '../../../base/participants';
|
import { getParticipantCount } from '../../../base/participants';
|
||||||
import { connect } from '../../../base/redux';
|
import { connect } from '../../../base/redux';
|
||||||
import { SpeakerStats } from '../../../speaker-stats';
|
import { SpeakerStats } from '../../../speaker-stats';
|
||||||
|
@ -87,7 +86,6 @@ class ParticipantsCount extends PureComponent<Props> {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Label
|
<Label
|
||||||
color = { COLORS.white }
|
|
||||||
icon = { IconUserGroups }
|
icon = { IconUserGroups }
|
||||||
onClick = { !this.props._isSpeakerStatsDisabled && this._onClick }
|
onClick = { !this.props._isSpeakerStatsDisabled && this._onClick }
|
||||||
text = { count } />
|
text = { count } />
|
||||||
|
|
Loading…
Reference in New Issue