diff options
Diffstat (limited to 'web/react/components/setting_item_min.jsx')
-rw-r--r-- | web/react/components/setting_item_min.jsx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/web/react/components/setting_item_min.jsx b/web/react/components/setting_item_min.jsx index 098729a4f..2c0fdf2f4 100644 --- a/web/react/components/setting_item_min.jsx +++ b/web/react/components/setting_item_min.jsx @@ -12,14 +12,18 @@ export default class SettingItemMin extends React.Component { href='#' onClick={this.props.updateSection} > - Edit + <i className='fa fa-pencil'/> + {'Edit'} </a> </li> ); } return ( - <ul className='section-min'> + <ul + className='section-min' + onClick={this.props.updateSection} + > <li className='col-sm-10 section-title'>{this.props.title}</li> {editButton} <li className='col-sm-7 section-describe'>{this.props.describe}</li> |