don't hide empty sections that have a (+) button
This commit is contained in:
@@ -526,8 +526,9 @@ module.exports = React.createClass({
|
|||||||
props = Object.assign({}, defaultProps, props);
|
props = Object.assign({}, defaultProps, props);
|
||||||
const isLast = i === subListsProps.length - 1;
|
const isLast = i === subListsProps.length - 1;
|
||||||
const len = props.list.length + (props.extraTiles ? props.extraTiles.length : 0);
|
const len = props.list.length + (props.extraTiles ? props.extraTiles.length : 0);
|
||||||
if (!len) {
|
// empty and no add button? dont render
|
||||||
return components; //dont render
|
if (!len && !props.onAddRoom) {
|
||||||
|
return components;
|
||||||
}
|
}
|
||||||
const {key, label, ... otherProps} = props;
|
const {key, label, ... otherProps} = props;
|
||||||
const chosenKey = key || label;
|
const chosenKey = key || label;
|
||||||
|
|||||||
Reference in New Issue
Block a user