fix: be more specific regarding booking status

This commit is contained in:
Björn Fromme
2025-03-21 17:15:23 +01:00
parent 6326e1ffc3
commit 9ce86ea447
2 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ class ParticipantType extends AbstractType
$participantIndex = $participantData->index;
// don't add any fields for canceled participants
if ('F' !== $participantData->status) {
if ('S' === $participantData->status) {
return;
}