mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 11:47:23 +03:00
Merge pull request #5008 from matrix-org/travis/fix-devtools
Fix size call for devtools state events
This commit is contained in:
commit
08f88550b1
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue