1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-22 18:41:57 +03:00

Fix size call for devtools state events

Fixes https://github.com/vector-im/riot-web/issues/14565

It's not a function
This commit is contained in:
Travis Ralston
2020-07-16 18:34:04 -06:00
parent 16a084bca7
commit 87743fe0e8

View File

@ -416,7 +416,7 @@ class RoomStateExplorer extends React.PureComponent {
{
Array.from(this.roomStateEvents.entries()).map(([eventType, allStateKeys]) => {
let onClickFn;
if (allStateKeys.size() === 1 && allStateKeys.has("")) {
if (allStateKeys.size === 1 && allStateKeys.has("")) {
onClickFn = this.onViewSourceClick(allStateKeys.get(""));
} else {
onClickFn = this.browseEventType(eventType);