diff --git a/src/components/ecosystem.js b/src/components/ecosystem.js index e709df3f0..9752817f7 100644 --- a/src/components/ecosystem.js +++ b/src/components/ecosystem.js @@ -9,9 +9,9 @@ export default class Ecosystem extends React.Component {
{this.props.ecosystem.title}
-
{this.props.category.name}
-
{this.props.ecosystem.title}
-
{this.props.ecosystem.text}
+ {this.props.category.name &&
{this.props.category.name}
} + {this.props.ecosystem.title &&
{this.props.ecosystem.title}
} + {this.props.ecosystem.text &&
{this.props.ecosystem.text}
} );