[DEV-213] add supervised user tooltip (#1131)
* add supervised user tooltip * change translation
This commit is contained in:
parent
6e195a9109
commit
c1a7befbed
|
@ -93,7 +93,10 @@ class AdminPanelViewUser extends React.Component {
|
|||
</div>
|
||||
<span className="separator" />
|
||||
<div className="admin-panel-view-user">
|
||||
<div className="admin-panel-view-user__supervised-users-header">{i18n('SUPERVISED_USER')}</div>
|
||||
<div className="admin-panel-view-user__supervised-users-container">
|
||||
<div className="admin-panel-view-user__supervised-users-header">{i18n('SUPERVISED_USER')}</div>
|
||||
<InfoTooltip className="admin-panel-view-user__info-tooltip" text={i18n('SUPERVISED_USER_INFORMATION')}/>
|
||||
</div>
|
||||
<div className="admin-panel-view-user__supervised-users-content">
|
||||
<Autocomplete
|
||||
onChange={this.onChangeValues.bind(this)}
|
||||
|
|
|
@ -30,6 +30,11 @@
|
|||
margin-top: 20px;
|
||||
}
|
||||
|
||||
&__supervised-users-container {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
&__action-button {
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
|
|
@ -27,6 +27,7 @@ export default {
|
|||
'TICKET_LIST': 'Ticket List',
|
||||
'SUPPORT_CENTER': 'Support Center',
|
||||
'SUPERVISED_USER': 'Supervised users',
|
||||
'SUPERVISED_USER_INFORMATION': 'Allows to see tickets from another user',
|
||||
'DEPARTMENT': 'Department',
|
||||
'DEFAULT_DEPARTMENT': 'Default Department',
|
||||
'AUTHOR': 'Author',
|
||||
|
|
Loading…
Reference in New Issue