diff --git a/lib/Service/RoomFormatter.php b/lib/Service/RoomFormatter.php index c850bc54e66..54630f9e0a4 100644 --- a/lib/Service/RoomFormatter.php +++ b/lib/Service/RoomFormatter.php @@ -162,6 +162,7 @@ public function formatRoomV4( return array_merge($roomData, [ 'name' => $room->getName(), 'displayName' => $room->getDisplayName($isListingBreakoutRooms || $isSIPBridgeRequest || $this->userId === null ? '' : $this->userId, $isListingBreakoutRooms || $isSIPBridgeRequest), + 'description' => $room->getListable() !== Room::LISTABLE_NONE ? $room->getDescription() : '', 'objectType' => $room->getObjectType(), 'objectId' => $room->getObjectId(), 'readOnly' => $room->getReadOnly(), diff --git a/src/App.vue b/src/App.vue index 17eff15ba0e..dc1f4cae93e 100644 --- a/src/App.vue +++ b/src/App.vue @@ -768,6 +768,10 @@ export default { body .modal-wrapper * { box-sizing: border-box; } + +.modal-wrapper h2 { + margin-top: 0; +}