@@ -26,12 +26,12 @@ class ContactInfo extends Component {
26
26
27
27
populate_participant_with_data_source ( participant , participantData ) {
28
28
return {
29
- first_name : _ . get ( participantData , "first_name" ) || _ . get ( participant , "first_name" ) ,
30
- last_name : _ . get ( participantData , "last_name" ) || _ . get ( participant , "last_name" ) ,
31
- email : _ . get ( participantData , "email" ) || _ . get ( participant , "email" ) ,
32
- mobile : _ . get ( participantData , "mobile" ) || _ . get ( participant , "mobile" ) ,
33
- city : _ . get ( participantData , "city" ) || _ . get ( participant , "city" ) ,
34
- street_and_number : _ . get ( participantData , "street_and_number" ) || _ . get ( participant , "street_and_number" )
29
+ first_name : _ . get ( participantData , "first_name" ) || _ . get ( participant , "first_name" ) || "" ,
30
+ last_name : _ . get ( participantData , "last_name" ) || _ . get ( participant , "last_name" ) || "" ,
31
+ email : _ . get ( participantData , "email" ) || _ . get ( participant , "email" ) || "" ,
32
+ mobile : _ . get ( participantData , "mobile" ) || _ . get ( participant , "mobile" ) || "" ,
33
+ city : _ . get ( participantData , "city" ) || _ . get ( participant , "city" ) || "" ,
34
+ street_and_number : _ . get ( participantData , "street_and_number" ) || _ . get ( participant , "street_and_number" ) || ""
35
35
} ;
36
36
}
37
37
0 commit comments