if your php version 5.3+ add following code in you theme’s (child theme’s if any) functions.php
add_filter( 'fep_filter_display_participants', function(){
$participants = get_post_meta( get_the_ID(), '_participants' );
return implode( ', ', $participants );
});
this will show user id (as you suggested) in participants list.