mirror of https://github.com/vector-im/riot-web
Fix slightly noisy warning when switching spaces (#9468)
Sometimes `spaceName` can be `undefined` because of function timing - use a different method for getting the space's name when this happens.t3chguy/dedup-icons-17oct
parent
17c3fb89c1
commit
dade38086c
|
@ -379,7 +379,7 @@ const RoomListHeader = ({ onVisibilityChange }: IProps) => {
|
||||||
isExpanded={mainMenuDisplayed}
|
isExpanded={mainMenuDisplayed}
|
||||||
className="mx_RoomListHeader_contextMenuButton"
|
className="mx_RoomListHeader_contextMenuButton"
|
||||||
title={activeSpace
|
title={activeSpace
|
||||||
? _t("%(spaceName)s menu", { spaceName })
|
? _t("%(spaceName)s menu", { spaceName: spaceName ?? activeSpace.name })
|
||||||
: _t("Home options")}
|
: _t("Home options")}
|
||||||
>
|
>
|
||||||
{ title }
|
{ title }
|
||||||
|
|
Loading…
Reference in New Issue