Hi,
I had the exact same problem and I fixed it myself doing these 2 small changes. Be very carefull! Small typos can break the component. Only do this if you understand what's happening. Make sure you can rollback your changes if things go wrong.
In file: components\com_matukio\models\bookings.php
Add
case 'activeandpendingandwaitlist':
$status = "AND (a.status= '2' OR a.status = '1' OR a.status = '0')";
break;
after
case 'activeandpending':
$status = "AND (a.status = '1' OR a.status = '0')";
break;
In file: components\com_matukio\views\participantlist\view.html.php
$this->bookings = $bmodel->getItems($event->id, 'activeandpending');
change this to
$this->bookings = $bmodel->getItems($event->id, 'activeandpendingandwaitlist');
Hope this helps.
Bart W.