1
0
mirror of https://github.com/element-hq/element-web.git synced 2025-12-01 09:58:03 +03:00

Fix list of members in space preview (#7356)

This commit is contained in:
Michael Telatynski
2021-12-17 08:53:26 +00:00
committed by GitHub
parent 9ed771ad7a
commit 5ee356daaa

View File

@@ -128,9 +128,9 @@ const useMyRoomMembership = (room: Room) => {
};
const SpaceInfo = ({ space }: { space: Room }) => {
// summary will begin as undefined whilst loading and go null if it fails to load.
// summary will begin as undefined whilst loading and go null if it fails to load or we are not invited.
const summary = useAsyncMemo(async () => {
if (space.getMyMembership() !== "invite") return;
if (space.getMyMembership() !== "invite") return null;
try {
return space.client.getRoomSummary(space.roomId);
} catch (e) {
@@ -141,7 +141,7 @@ const SpaceInfo = ({ space }: { space: Room }) => {
const membership = useMyRoomMembership(space);
let visibilitySection;
if (joinRule === "public") {
if (joinRule === JoinRule.Public) {
visibilitySection = <span className="mx_SpaceRoomView_info_public">
{ _t("Public space") }
</span>;