Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit d994375

Browse files
committed
Remove status as it's no longer part of the MSC
1 parent ce21ce8 commit d994375

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/components/views/settings/tabs/room/BridgeSettingsTab.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,6 @@ export default class BridgeSettingsTab extends React.Component {
5353
const protocolName = content.protocol.displayname || content.protocol.id;
5454
const channelName = channel.displayname || channel.id;
5555
const networkName = network ? network.displayname || network.id : "";
56-
let status = null;
57-
if (content.status === "active") {
58-
status = (<p> Status: <b>Active</b> </p>);
59-
} else if (content.status === "disabled") {
60-
status = (<p> Status: <b>Disabled</b> </p>);
61-
}
6256

6357
let creator = null;
6458
if (content.creator) {
@@ -122,7 +116,6 @@ export default class BridgeSettingsTab extends React.Component {
122116
<h3>{channelIcon} {channelName} {networkName ? ` on ${networkName}` : ""} {networkIcon}</h3>
123117
<p> Connected via {protocolName} </p>
124118
<details>
125-
{status}
126119
{creator}
127120
{bot}
128121
{chanAndNetworkInfo}

0 commit comments

Comments
 (0)