[DEV-213] add supervised user tooltip (#1131)

* add supervised user tooltip

* change translation
This commit is contained in:
Joel Elias Méndez 2022-01-19 11:59:52 -03:00 committed by GitHub
parent 6e195a9109
commit c1a7befbed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 1 deletions

View File

@ -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)}

View File

@ -30,6 +30,11 @@
margin-top: 20px;
}
&__supervised-users-container {
display: flex;
flex-direction: row;
}
&__action-button {
margin-right: 20px;
}

View File

@ -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',