mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-25 03:24:25 +08:00
fix: the json parsing issue (#3739)
This commit is contained in:
parent
3c63d66591
commit
9a433891f2
@ -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 (
|
||||
<CopyClipboardHOC textToCopy={textToCopy}>
|
||||
<span style={{ color: orange[6] }}>{field}</span>
|
||||
<span style={{ color: orange[6] }}>{removeEscapeCharacters(field)}</span>
|
||||
</CopyClipboardHOC>
|
||||
);
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user