diff --git a/packages/grafana-ui/src/components/Table/JSONViewCell.tsx b/packages/grafana-ui/src/components/Table/JSONViewCell.tsx index d163a151672..3f118d24dc7 100644 --- a/packages/grafana-ui/src/components/Table/JSONViewCell.tsx +++ b/packages/grafana-ui/src/components/Table/JSONViewCell.tsx @@ -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 = ;