You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-28 15:22:05 +03:00
fix lint
This commit is contained in:
@ -29,7 +29,7 @@ export default class MainSplit extends React.Component {
|
||||
const classNames = {
|
||||
handle: "mx_ResizeHandle",
|
||||
vertical: "mx_ResizeHandle_vertical",
|
||||
reverse: "mx_ResizeHandle_reverse"
|
||||
reverse: "mx_ResizeHandle_reverse",
|
||||
};
|
||||
const resizer = new Resizer(
|
||||
this.resizeContainer,
|
||||
@ -89,4 +89,4 @@ export default class MainSplit extends React.Component {
|
||||
</div>;
|
||||
}
|
||||
}
|
||||
};
|
||||
}
|
||||
|
@ -159,8 +159,6 @@ export default class RightPanel extends React.Component {
|
||||
|
||||
const TintableSvg = sdk.getComponent("elements.TintableSvg");
|
||||
|
||||
let inviteGroup;
|
||||
|
||||
const isPhaseGroup = [
|
||||
RightPanel.Phase.GroupMemberInfo,
|
||||
RightPanel.Phase.GroupMemberList,
|
||||
@ -194,7 +192,8 @@ export default class RightPanel extends React.Component {
|
||||
|
||||
// TODO: either include this in the DOM again, or move it to other component
|
||||
if (this.props.groupId && this.state.isUserPrivilegedInGroup) {
|
||||
inviteGroup = isPhaseGroup ? (
|
||||
// inviteGroup =
|
||||
isPhaseGroup ? (
|
||||
<AccessibleButton className="mx_RightPanel_invite" onClick={this.onInviteToGroupButtonClick}>
|
||||
<div className="mx_RightPanel_icon" >
|
||||
<TintableSvg src="img/icon-invite-people.svg" width="35" height="35" />
|
||||
|
@ -75,7 +75,7 @@ export default class GroupHeaderButtons extends HeaderButtons {
|
||||
isHighlighted={isPhaseRoom}
|
||||
clickPhase={RightPanel.Phase.GroupRoomList}
|
||||
analytics={['Right Panel', 'Group Room List Button', 'click']}
|
||||
/>
|
||||
/>,
|
||||
];
|
||||
}
|
||||
}
|
||||
|
@ -67,7 +67,7 @@ export default class RoomHeaderButtons extends HeaderButtons {
|
||||
isHighlighted={this.state.phase === RightPanel.Phase.NotificationPanel}
|
||||
clickPhase={RightPanel.Phase.NotificationPanel}
|
||||
analytics={['Right Panel', 'Notification List Button', 'click']}
|
||||
/>
|
||||
/>,
|
||||
];
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user