Header Buttons switch to a fragment from an array of nodes

This commit is contained in:
Michael Telatynski 2021-05-25 13:17:14 +01:00
parent 13427aaf07
commit 96928e5d31
3 changed files with 13 additions and 13 deletions

View file

@ -81,23 +81,21 @@ export default class RoomHeaderButtons extends HeaderButtons {
};
public renderButtons() {
return [
return <>
<HeaderButton
key="notifsButton"
name="notifsButton"
title={_t('Notifications')}
isHighlighted={this.isPhase(RightPanelPhases.NotificationPanel)}
onClick={this.onNotificationsClicked}
analytics={['Right Panel', 'Notification List Button', 'click']}
/>,
/>
<HeaderButton
key="roomSummaryButton"
name="roomSummaryButton"
title={_t('Room Info')}
isHighlighted={this.isPhase(ROOM_INFO_PHASES)}
onClick={this.onRoomSummaryClicked}
analytics={['Right Panel', 'Room Summary Button', 'click']}
/>,
];
/>
</>;
}
}