Merge pull request #4999 from vector-im/dbkr/fix_missing_isinvite_warning

Make isInvite default to false
This commit is contained in:
David Baker 2017-09-07 14:35:35 +01:00 committed by GitHub
commit ff8527c819
1 changed files with 2 additions and 1 deletions

View File

@ -104,7 +104,8 @@ var RoomSubList = React.createClass({
getDefaultProps: function() { getDefaultProps: function() {
return { return {
onHeaderClick: function() {}, // NOP onHeaderClick: function() {}, // NOP
onShowMoreRooms: function() {} // NOP onShowMoreRooms: function() {}, // NOP
isInvite: false,
}; };
}, },