We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e04df3c commit a78658dCopy full SHA for a78658d
src/Controller/Crud/ProcessExecutionCrudController.php
@@ -75,7 +75,7 @@ public function configureFields(string $pageName): array
75
'target',
76
'startDate',
77
'endDate',
78
- IntegerField::new('status')->formatValue(static function (int $value) {
+ IntegerField::new('status')->formatValue(static function (?int $value) {
79
return match ($value) {
80
ProcessExecution::STATUS_FAIL => '<button class="btn btn-danger btn-lm">failed</button>',
81
ProcessExecution::STATUS_START => '<button class="btn btn-warning btn-lm">started</button>',
0 commit comments