mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 10:15:43 +03:00
Make isInvite default to false
as things are assuming it's optional but it isn't which is causing a ton of warnings.
This commit is contained in:
parent
d374425a20
commit
76be54b2be
1 changed files with 2 additions and 1 deletions
|
@ -104,7 +104,8 @@ var RoomSubList = React.createClass({
|
|||
getDefaultProps: function() {
|
||||
return {
|
||||
onHeaderClick: function() {}, // NOP
|
||||
onShowMoreRooms: function() {} // NOP
|
||||
onShowMoreRooms: function() {}, // NOP
|
||||
isInvite: false,
|
||||
};
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue