diff --git a/frontend/src/container/LogDetailedView/TableView.tsx b/frontend/src/container/LogDetailedView/TableView.tsx index 17446b0118..9237136349 100644 --- a/frontend/src/container/LogDetailedView/TableView.tsx +++ b/frontend/src/container/LogDetailedView/TableView.tsx @@ -63,7 +63,7 @@ function TableView({ .map((key) => ({ key, field: key, - value: removeEscapeCharacters(JSON.stringify(flattenLogData[key])), + value: JSON.stringify(flattenLogData[key]), })); const onTraceHandler = (record: DataType) => (): void => { @@ -182,7 +182,7 @@ function TableView({ return ( - {field} + {removeEscapeCharacters(field)} ); },