Skip to content
This repository has been archived by the owner on Jun 28, 2021. It is now read-only.

Fixed error if there are no children in the header #22

Merged
merged 1 commit into from
Sep 25, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/layout/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Header extends React.Component {

var isRowOrTab = false;
React.Children.forEach(this.props.children, child => {
if(child.type === HeaderRow || child.type === HeaderTabs) {
if(child && (child.type === HeaderRow || child.type === HeaderTabs)) {
isRowOrTab = true;
}
});
Expand Down