Fix #537 - Fix blank email detail page

This commit is contained in:
y.yerli 2025-01-06 15:00:13 +03:00
parent 94a880c201
commit 34d9128f87

View file

@ -66,7 +66,7 @@ class RouteConverter
public function convert(?string $module, ?string $action, ?string $record, ?array $queryParams): string
{
if (empty($module)) {
throw new InvalidArgumentException('No module defined');
return '';
}
$route = $this->buildRoute($module, $action, $record);