summaryrefslogtreecommitdiffstats
path: root/webapp/components/backstage/backstage_category.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/backstage/backstage_category.jsx')
-rw-r--r--webapp/components/backstage/backstage_category.jsx4
1 files changed, 4 insertions, 0 deletions
diff --git a/webapp/components/backstage/backstage_category.jsx b/webapp/components/backstage/backstage_category.jsx
index 913c7562c..8e6c8541b 100644
--- a/webapp/components/backstage/backstage_category.jsx
+++ b/webapp/components/backstage/backstage_category.jsx
@@ -40,6 +40,10 @@ export default class BackstageCategory extends React.Component {
<ul className='sections'>
{
React.Children.map(children, (child) => {
+ if (!child) {
+ return child;
+ }
+
return React.cloneElement(child, {
parentLink: link
});