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 a93c694 commit 595d9f0Copy full SHA for 595d9f0
templates/data.view.html
@@ -534,7 +534,6 @@
534
case '.ini':
535
case '.yaml':
536
case '.yml':
537
- case '.json':
538
case '.json5':
539
case '.hjson':
540
// pass through loaded data json
@@ -550,6 +549,11 @@
550
549
// TODO: add parquet data read
551
console.info('data.preview:\n\n Parquet data format support coming soon!');
552
break;
+ default: // json
553
+ // pass through loaded data json
554
+ tableData = data;
555
+ logMessage(`getData()\n\n records count: ${tableData.length.toLocaleString()}`);
556
+ break;
557
}
558
return tableData;
559
} // end of getData()
0 commit comments