1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-05 23:10:41 +03:00

get rid of obsolete showEmpty prop

This commit is contained in:
Bruno Windels
2018-10-19 14:32:49 +02:00
parent ae8723451a
commit 0386a1e048
2 changed files with 0 additions and 3 deletions

View File

@@ -56,7 +56,6 @@ const RoomSubList = React.createClass({
emptyContent: PropTypes.node, // content shown if the list is empty
headerItems: PropTypes.node, // content shown in the sublist header
extraTiles: PropTypes.arrayOf(PropTypes.node), // extra elements added beneath tiles
showEmpty: PropTypes.bool,
},
getInitialState: function() {
@@ -72,7 +71,6 @@ const RoomSubList = React.createClass({
}, // NOP
extraTiles: [],
isInvite: false,
showEmpty: true,
};
},