Add export option to right panel

This commit is contained in:
Jaiwanth 2021-06-25 22:45:14 +05:30
parent 566e7bc8d6
commit 4d6ad91e52
4 changed files with 22 additions and 0 deletions

View file

@ -279,6 +279,9 @@ const RoomSummaryCard: React.FC<IProps> = ({ room, onClose }) => {
<Button className="mx_RoomSummaryCard_icon_settings" onClick={onRoomSettingsClick}>
{_t("Room settings")}
</Button>
<Button className="mx_RoomSummaryCard_icon_export" onClick = {() => {}}>
{_t("Export chat")}
</Button>
</Group>
{ SettingsStore.getValue(UIFeature.Widgets) && <AppsSection room={room} /> }