mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-11 08:25:46 +01:00
ESlint indent
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user