mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
line length
This commit is contained in:
parent
6225e402cc
commit
b1c2887087
1 changed files with 2 additions and 1 deletions
|
@ -55,7 +55,8 @@ export default class RoomSettingsDialog extends React.Component {
|
|||
_getTabs() {
|
||||
const tabs = [];
|
||||
const featureFlag = SettingsStore.isFeatureEnabled("feature_bridge_state");
|
||||
const shouldShowBridgeIcon = featureFlag && BridgeSettingsTab.getBridgeStateEvents(this.props.roomId).length > 0;
|
||||
const shouldShowBridgeIcon = featureFlag &&
|
||||
BridgeSettingsTab.getBridgeStateEvents(this.props.roomId).length > 0;
|
||||
|
||||
tabs.push(new Tab(
|
||||
_td("General"),
|
||||
|
|
Loading…
Reference in a new issue