diff options
Diffstat (limited to 'app/client/common/group.component.js')
| -rw-r--r-- | app/client/common/group.component.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/client/common/group.component.js b/app/client/common/group.component.js index 5dc9ddf..8b74e36 100644 --- a/app/client/common/group.component.js +++ b/app/client/common/group.component.js @@ -3,7 +3,7 @@ import { h, Component } from 'preact' export default function Group (props){ return ( <div className='group'> - <h3>{this.props.title}</h3> + {this.props.title && <h3>{this.props.title}</h3>} {this.props.children} </div> ) |
