diff --git a/web-frontend/src/main/v3/packages/constants/src/types/ErrorResponse.ts b/web-frontend/src/main/v3/packages/constants/src/types/ErrorResponse.ts index 294285798ebe..7b658b1990d9 100644 --- a/web-frontend/src/main/v3/packages/constants/src/types/ErrorResponse.ts +++ b/web-frontend/src/main/v3/packages/constants/src/types/ErrorResponse.ts @@ -1,15 +1,14 @@ export type ErrorResponse = { timestamp: number; status: number; - error: string; + title: string; exception: string; trace: string; message: string; - path: string; + instance: string; data: { requestInfo: { method: string; - url: string; headers: { [key: string]: string[] }; parameters: { [key: string]: string[] }; }; diff --git a/web-frontend/src/main/v3/packages/ui/src/components/Error/ErrorDetailDialog.tsx b/web-frontend/src/main/v3/packages/ui/src/components/Error/ErrorDetailDialog.tsx index e0f113d6ffcf..c18af2808ae2 100644 --- a/web-frontend/src/main/v3/packages/ui/src/components/Error/ErrorDetailDialog.tsx +++ b/web-frontend/src/main/v3/packages/ui/src/components/Error/ErrorDetailDialog.tsx @@ -48,15 +48,13 @@ export const ErrorDetailDialog = ({
Error Details -{error?.path}
+{error?.instance}
{error?.message}