|
|
@@ -90,6 +90,12 @@ type Props = AbstractProps & {
|
|
90
|
90
|
*/
|
|
91
|
91
|
enableSaveLogs: boolean,
|
|
92
|
92
|
|
|
|
93
|
+ /**
|
|
|
94
|
+ * Whether or not should display the "Show More" link in the local video
|
|
|
95
|
+ * stats table.
|
|
|
96
|
+ */
|
|
|
97
|
+ disableShowMoreStats: boolean,
|
|
|
98
|
+
|
|
93
|
99
|
/**
|
|
94
|
100
|
* Whether or not clicking the indicator should display a popover for more
|
|
95
|
101
|
* details.
|
|
|
@@ -391,6 +397,7 @@ class ConnectionIndicator extends AbstractConnectionIndicator<Props, State> {
|
|
391
|
397
|
bridgeCount = { bridgeCount }
|
|
392
|
398
|
codec = { codec }
|
|
393
|
399
|
connectionSummary = { this._getConnectionStatusTip() }
|
|
|
400
|
+ disableShowMoreStats = { this.props.disableShowMoreStats }
|
|
394
|
401
|
e2eRtt = { e2eRtt }
|
|
395
|
402
|
enableSaveLogs = { this.props.enableSaveLogs }
|
|
396
|
403
|
framerate = { framerate }
|
|
|
@@ -448,7 +455,8 @@ export function _mapStateToProps(state: Object, ownProps: Props) {
|
|
448
|
455
|
= typeof participantId === 'undefined' ? getLocalParticipant(state) : getParticipantById(state, participantId);
|
|
449
|
456
|
const props = {
|
|
450
|
457
|
_connectionStatus: participant?.connectionStatus,
|
|
451
|
|
- enableSaveLogs: state['features/base/config'].enableSaveLogs
|
|
|
458
|
+ enableSaveLogs: state['features/base/config'].enableSaveLogs,
|
|
|
459
|
+ disableShowMoreStats: state['features/base/config'].disableShowMoreStats
|
|
452
|
460
|
};
|
|
453
|
461
|
|
|
454
|
462
|
if (conference) {
|