1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-12-05 15:22:09 +03:00

Handle more edge cases in Space Hierarchy (#10280)

This commit is contained in:
Janne Mareike Koschinski
2023-03-20 10:54:24 +01:00
committed by GitHub
parent ca0dfb6c1e
commit 503df54bd6

View File

@@ -199,7 +199,7 @@ const Tile: React.FC<ITileProps> = ({
);
}
let description = _t("%(count)s members", { count: room.num_joined_members });
let description = _t("%(count)s members", { count: room.num_joined_members ?? 0 });
if (numChildRooms !== undefined) {
description += " · " + _t("%(count)s rooms", { count: numChildRooms });
}