Commit c0af2937 authored by Muhammadali's avatar Muhammadali

update-

parent 0afce0e4
{ {
"name": "boxdialer", "name": "boxdialer",
"version": "3.9.7", "version": "3.9.8",
"description": "", "description": "",
"main": "src/boxDialer.js", "main": "src/boxDialer.js",
"scripts": { "scripts": {
......
...@@ -46,7 +46,18 @@ const InnerCaller = ({ hidden, type, from }) => { ...@@ -46,7 +46,18 @@ const InnerCaller = ({ hidden, type, from }) => {
<Block hidden={hidden}> <Block hidden={hidden}>
<div className='top'> <div className='top'>
<p className='call_text nocopy'> <p className='call_text nocopy'>
{translator.translate('CALL_FROM')} <span>{from}</span> {type == 'connectingIncoming' && (
<>
{translator.translate('CALL_FROM')}{' '}
<span className='phone_text'>{from}</span>
</>
)}
{type == 'connectingOutgoing' && (
<>
{translator.translate('CALL_TO')}{' '}
<span className='phone_text'>{from}</span>
</>
)}
</p> </p>
</div> </div>
<div className='bottom'> <div className='bottom'>
......
...@@ -51,6 +51,10 @@ const Block = styled.div` ...@@ -51,6 +51,10 @@ const Block = styled.div`
margin: 0; margin: 0;
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
} }
.phone_text {
font-weight: bold;
color: green:
}
.button { .button {
max-width: 100px; max-width: 100px;
width: 100%; width: 100%;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment