We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d26365 commit 4691817Copy full SHA for 4691817
1 file changed
app/controllers/csv.js
@@ -73,6 +73,7 @@ function createEntitiesFromRows(rows) {
73
Object.keys(row).forEach((key) => {
74
const value = row[key];
75
if (value !== '') {
76
+ /* eslint-disable no-fallthrough */
77
switch (key) {
78
case 'agroVocConcept':
79
case 'alternateName':
@@ -206,11 +207,14 @@ function createEntitiesFromRows(rows) {
206
207
case 'postalCode':
208
case 'providedBy':
209
break;
210
+
211
default:
212
if (!key.includes('_')) {
213
debug('unknown : ' + key);
214
}
215
216
217
+ /* eslint-enable no-fallthrough */
218
219
if (unitCode[key]) {
220
entity[key].unitCode = unitCode[key];
0 commit comments