Satisfy new eslint indentation rule

This commit is contained in:
witzig 2017-06-15 21:26:35 +02:00
parent 1db7bd9873
commit 2da90b58e4
4 changed files with 19 additions and 17 deletions

View file

@ -398,6 +398,7 @@ module.exports.getRow = (fieldList, values, useDate, showAll, onlyExisting) => {
// ignore missing values // ignore missing values
return; return;
} }
/* eslint-disable indent */
switch (field.type) { switch (field.type) {
case 'text': case 'text':
case 'website': case 'website':
@ -574,6 +575,7 @@ module.exports.getRow = (fieldList, values, useDate, showAll, onlyExisting) => {
break; break;
} }
} }
/* eslint-enable indent */
}); });
return row; return row;