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 06f03fb commit 6f42395Copy full SHA for 6f42395
1 file changed
templates/data.view.html
@@ -567,9 +567,9 @@
567
dataTable: dataTable,
568
config: parseConfig(viewConfig)
569
};
570
- if (dataUrl.startsWith('http')) {
571
- // append remote data url
572
- data['dataUrl'] = dataUrl;
+ if (dataUrl.startsWith('http://') || dataUrl.startsWith('https://')) {
+ // append remote data uri
+ data['dataUri'] = dataUrl;
573
}
574
postData(data, dataFileType);
575
break;
0 commit comments