From a997374a03a596638968e3e81371c5d3d6c4d721 Mon Sep 17 00:00:00 2001 From: Manuel Stahl Date: Tue, 27 Aug 2019 14:41:24 +0200 Subject: [PATCH] Show alias and topic in room-admin/List Change-Id: I93a3e95891d1628d73d28388c2d680079276076e --- src/features/room-admin/List.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/features/room-admin/List.js b/src/features/room-admin/List.js index f424e50..a59ac48 100644 --- a/src/features/room-admin/List.js +++ b/src/features/room-admin/List.js @@ -28,11 +28,21 @@ export class List extends Component { - NameRoom-IDMembers + Alias + Name + Topic + Room-ID + Members - {roomList.map(item => ({item.name}{item.room_id}{item.num_joined_members}))} + {roomList.map(item => ( + {item.canonical_alias} + {item.name} + {item.topic} + {item.room_id} + {item.num_joined_members} + ))}