@ -151,7 +151,7 @@ function AgentsRoute() {
const header = useMemo ( ( ) => [
< GenericTable . HeaderCell key = { 'name' } direction = { sort [ 1 ] } active = { sort [ 0 ] === 'name' } onClick = { onHeaderClick } sort = 'name' w = 'x200' > { t ( 'Name' ) } < / G e n e r i c T a b l e . H e a d e r C e l l > ,
mediaQuery && < GenericTable . HeaderCell key = { 'username' } direction = { sort [ 1 ] } active = { sort [ 0 ] === 'username' } onClick = { onHeaderClick } sort = 'username' w = 'x140' > { t ( 'Username' ) } < / G e n e r i c T a b l e . H e a d e r C e l l > ,
< GenericTable . HeaderCell key = { 'email' } direction = { sort [ 1 ] } active = { sort [ 0 ] === 'emails.adress' } onClick = { onHeaderClick } sort = 'emails.address' w = 'x120' > { t ( 'Email' ) } < / G e n e r i c T a b l e . H e a d e r C e l l > ,
< GenericTable . HeaderCell key = { 'email' } direction = { sort [ 1 ] } active = { sort [ 0 ] === 'emails.add ress' } onClick = { onHeaderClick } sort = 'emails.address' w = 'x120' > { t ( 'Email' ) } < / G e n e r i c T a b l e . H e a d e r C e l l > ,
< GenericTable . HeaderCell key = { 'status' } direction = { sort [ 1 ] } active = { sort [ 0 ] === 'status' } onClick = { onHeaderClick } sort = 'status' w = 'x120' > { t ( 'Livechat_status' ) } < / G e n e r i c T a b l e . H e a d e r C e l l > ,
< GenericTable . HeaderCell key = { 'remove' } w = 'x40' > { t ( 'Remove' ) } < / G e n e r i c T a b l e . H e a d e r C e l l > ,
] . filter ( Boolean ) , [ sort , onHeaderClick , t , mediaQuery ] ) ;
@ -211,7 +211,7 @@ function AgentsRoute() {
reload = { reload }
header = { header }
renderRow = { renderRow }
title = { 'Agents'} >
title = { t ( 'Agents') } >
< EditAgentsTab / >
< / A g e n t s P a g e > ;
}