fixes #42024
(cherry picked from commit 3110a9c238)
Co-authored-by: Derik Evangelista <derik.evangelista@grafana.com>
This commit is contained in:
co-authored by
Derik Evangelista
parent
5ab8b3a765
commit
2e2e6c4920
@@ -23,7 +23,7 @@ export function JSONViewCell(props: TableCellProps): JSX.Element {
|
||||
value = JSON.parse(value);
|
||||
} catch {} // ignore errors
|
||||
} else {
|
||||
displayValue = JSON.stringify(value);
|
||||
displayValue = JSON.stringify(value, null, ' ');
|
||||
}
|
||||
|
||||
const content = <JSONTooltip value={value} />;
|
||||
|
||||
Reference in New Issue
Block a user