We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d39d628 commit 8caa5d5Copy full SHA for 8caa5d5
mavo-gsheets.js
@@ -3,7 +3,7 @@
3
/**
4
* Google Sheets backend plugin for Mavo
5
* @author Dmitry Sharabin and contributors
6
- * @version 1.0.8
+ * @version 1.0.9
7
*/
8
9
(($, $f) => {
@@ -368,7 +368,7 @@
368
369
if (headings.length > 1) {
370
// We have a complex collection
371
- data = data.map(d => Object.values(d));
+ data = data.map(d => headings.map(heading => d[heading]));
372
}
373
else {
374
// We have a simple collection
0 commit comments