diff --git a/public/site/models/project.php b/public/site/models/project.php index fa4d8da..ea2fea8 100644 --- a/public/site/models/project.php +++ b/public/site/models/project.php @@ -7,7 +7,11 @@ class ProjectPage extends NotificationsPage { $steps = []; foreach ($this->children() as $child) { - $steps[] = $this->createStep($child); + try { + $steps[] = $this->createStep($child); + } catch (\Throwable $th) { + //throw $th; + } } usort($steps, fn($a, $b) => $a['index'] <=> $b['index']);