mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
Add titles to clarify icons in system console
The + and x icons in the team section can easily be misinterpreted as "Create team" and "Delete team". Added clarifying title text that the user can see when hovering on the icon.
This commit is contained in:
@@ -100,6 +100,7 @@ export default class AdminSidebar extends React.Component {
|
||||
className='menu-icon--right menu__close'
|
||||
onClick={this.removeTeam.bind(this, team.id)}
|
||||
style={{cursor: 'pointer'}}
|
||||
title='Remove team from sidebar menu'
|
||||
>
|
||||
{'x'}
|
||||
</span>
|
||||
@@ -233,7 +234,10 @@ export default class AdminSidebar extends React.Component {
|
||||
href='#'
|
||||
onClick={this.showTeamSelect}
|
||||
>
|
||||
<i className='fa fa-plus'></i>
|
||||
<i
|
||||
className='fa fa-plus'
|
||||
title='Add team to sidebar menu'
|
||||
></i>
|
||||
</a>
|
||||
</span>
|
||||
</h4>
|
||||
|
||||
Reference in New Issue
Block a user