We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 376a7a4 commit fa14288Copy full SHA for fa14288
src/chart/json/JSONChart.tsx
@@ -12,7 +12,6 @@ const NeoJSONChart = (props: ChartProps) => {
12
const { records, settings } = props;
13
const type = settings && settings.format ? settings.format : 'json';
14
const value = type == 'json' ? JSON.stringify(records, null, 2) : YAML.stringify(records, null, 2);
15
- console.log(type, value);
16
return (
17
<div style={{ marginTop: '0px' }}>
18
<TextareaAutosize
0 commit comments