ESlint indent

This commit is contained in:
Peter Jaszkowiak
2017-02-18 02:38:03 -07:00
parent 3b0dd2d1ef
commit 1493afee2a
43 changed files with 557 additions and 556 deletions

View File

@@ -30,18 +30,18 @@ module.exports = function (Topics) {
}
switch (meta.config.teaserPost) {
case 'first':
teaserPids.push(topic.mainPid);
break;
case 'first':
teaserPids.push(topic.mainPid);
break;
case 'last-post':
teaserPids.push(topic.teaserPid || topic.mainPid);
break;
case 'last-post':
teaserPids.push(topic.teaserPid || topic.mainPid);
break;
case 'last-reply': // intentional fall-through
default:
teaserPids.push(topic.teaserPid);
break;
case 'last-reply': // intentional fall-through
default:
teaserPids.push(topic.teaserPid);
break;
}
}
});