mirror of https://github.com/vector-im/riot-web
Show subspace rooms count even if it is 0 for consistency
parent
a9d0699488
commit
6e25e42e66
|
@ -152,7 +152,7 @@ const Tile: React.FC<ITileProps> = ({
|
|||
}
|
||||
|
||||
let description = _t("%(count)s members", { count: room.num_joined_members });
|
||||
if (numChildRooms) {
|
||||
if (numChildRooms !== undefined) {
|
||||
description += " · " + _t("%(count)s rooms", { count: numChildRooms });
|
||||
}
|
||||
if (room.topic) {
|
||||
|
|
Loading…
Reference in New Issue