Edit Phone Number: change text for no application to 'NONE'

This commit is contained in:
James Nuanez
2020-04-24 11:26:18 -07:00
parent 9c2c05ae4a
commit 512c293dd1
+6 -1
View File
@@ -375,7 +375,12 @@ const PhoneNumberForm = props => {
value={application}
onChange={e => setApplication(e.target.value)}
>
<option value="">-- OPTIONAL: Choose the application that will receive calls from this number --</option>
<option value="">
{props.type === 'add'
? '-- OPTIONAL: Choose the application that will receive calls from this number --'
: '-- NONE --'
}
</option>
{applicationValues.map(a => (
<option
key={a.application_sid}