Change summary tiles order
This commit is contained in:
parent
5dbc103486
commit
33bc26f039
1 changed files with 3 additions and 3 deletions
|
@ -280,15 +280,15 @@ const RoomSummaryCard: React.FC<IProps> = ({ room, onClose }) => {
|
||||||
<Button className="mx_RoomSummaryCard_icon_files" onClick={onRoomFilesClick}>
|
<Button className="mx_RoomSummaryCard_icon_files" onClick={onRoomFilesClick}>
|
||||||
{ _t("Show files") }
|
{ _t("Show files") }
|
||||||
</Button>
|
</Button>
|
||||||
|
<Button className="mx_RoomSummaryCard_icon_export" onClick={onRoomExportClick}>
|
||||||
|
{ _t("Export chat") }
|
||||||
|
</Button>
|
||||||
<Button className="mx_RoomSummaryCard_icon_share" onClick={onShareRoomClick}>
|
<Button className="mx_RoomSummaryCard_icon_share" onClick={onShareRoomClick}>
|
||||||
{ _t("Share room") }
|
{ _t("Share room") }
|
||||||
</Button>
|
</Button>
|
||||||
<Button className="mx_RoomSummaryCard_icon_settings" onClick={onRoomSettingsClick}>
|
<Button className="mx_RoomSummaryCard_icon_settings" onClick={onRoomSettingsClick}>
|
||||||
{ _t("Room settings") }
|
{ _t("Room settings") }
|
||||||
</Button>
|
</Button>
|
||||||
<Button className="mx_RoomSummaryCard_icon_export" onClick={onRoomExportClick}>
|
|
||||||
{ _t("Export chat") }
|
|
||||||
</Button>
|
|
||||||
</Group>
|
</Group>
|
||||||
|
|
||||||
{ SettingsStore.getValue(UIFeature.Widgets) && <AppsSection room={room} /> }
|
{ SettingsStore.getValue(UIFeature.Widgets) && <AppsSection room={room} /> }
|
||||||
|
|
Loading…
Reference in a new issue