mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 14:05:04 +08: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:
parent
16a084bca7
commit
87743fe0e8
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user