From ecb6e8d9a9e32f1b0810692e36dc8d0ed33890e1 Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 29 May 2025 12:24:22 +0100 Subject: [PATCH] Fixed route for custom fields index Signed-off-by: snipe --- app/Exceptions/Handler.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 173890b6c3..e6cc058fce 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -143,6 +143,8 @@ class Handler extends ExceptionHandler $route = 'maintenances.index'; } elseif ($route === 'licenseseats.index') { $route = 'licenses.index'; + } elseif ($route === 'customfields.index') { + $route = 'fields.index'; } return redirect()