@ -177,7 +177,7 @@ export default {
id : item . id ,
id : item . id ,
icon : { name : 'download' , color : 'primary' } ,
icon : { name : 'download' , color : 'primary' } ,
clickable _icon : true ,
clickable _icon : true ,
title : item . caller ,
title : item . caller _phonebook _name || item . caller ,
sub _title : date . formatDate ( item . start _time , INTERNAL _DATE _FORMAT _DASH _HOUR ) ,
sub _title : date . formatDate ( item . start _time , INTERNAL _DATE _FORMAT _DASH _HOUR ) ,
extra _text : new Date ( item . duration * 1000 ) . toISOString ( ) . substr ( 11 , 8 )
extra _text : new Date ( item . duration * 1000 ) . toISOString ( ) . substr ( 11 , 8 )
}
}
@ -208,9 +208,9 @@ export default {
call . call _type === 'cfb' || call . call _type === 'cft' ) {
call . call _type === 'cfb' || call . call _type === 'cft' ) {
return ` vmu ${ call . caller } `
return ` vmu ${ call . caller } `
} else if ( call . direction === 'out' ) {
} else if ( call . direction === 'out' ) {
return call . callee
return call . callee _phonebook _name || call . callee
} else if ( call . direction === 'in' ) {
} else if ( call . direction === 'in' ) {
return call . caller
return call . caller _phonebook _name || call . caller
}
}
return call . caller
return call . caller
} ,
} ,