diff --git a/web-frontend/src/main/v3/packages/constants/src/types/ErrorAnalysisGroupedErrorList.ts b/web-frontend/src/main/v3/packages/constants/src/types/ErrorAnalysisGroupedErrorList.ts index 476312a86225..5948539f5be9 100644 --- a/web-frontend/src/main/v3/packages/constants/src/types/ErrorAnalysisGroupedErrorList.ts +++ b/web-frontend/src/main/v3/packages/constants/src/types/ErrorAnalysisGroupedErrorList.ts @@ -16,13 +16,12 @@ export namespace ErrorAnalysisGroupedErrorList { count: number; firstOccurred: number; lastOccurred: number; - fieldName: FieldName; chart: Chart; - groupedFieldName: { - errorClassName: string; - }; + groupedFieldName: GroupedFieldName; groupFilterParams: { - errorClassName: string; + errorClassName?: string; + errorMessage_logType?: string; + errorStackTraceHash?: string; }; firstLineOfClassName: string; firstLineOfMethodName: string; @@ -35,7 +34,7 @@ export namespace ErrorAnalysisGroupedErrorList { }; } - export interface FieldName { + export interface GroupedFieldName { stackTraceHash?: string; uriTemplate?: string; errorMessage?: string; diff --git a/web-frontend/src/main/v3/packages/ui/src/components/ErrorAnalysis/table/errorAnalysisGroupedTableColumn.tsx b/web-frontend/src/main/v3/packages/ui/src/components/ErrorAnalysis/table/errorAnalysisGroupedTableColumn.tsx index 6b87f2ff2170..a2bb0b26a99c 100644 --- a/web-frontend/src/main/v3/packages/ui/src/components/ErrorAnalysis/table/errorAnalysisGroupedTableColumn.tsx +++ b/web-frontend/src/main/v3/packages/ui/src/components/ErrorAnalysis/table/errorAnalysisGroupedTableColumn.tsx @@ -39,7 +39,7 @@ export const errorGroupedTableColumns = ({ }, cell: (props) => { const original = props.row.original; - const fieldName = original?.fieldName; + const fieldName = original?.groupedFieldName; return ( <>