Fix lint errors

This commit is contained in:
Andrés Manelli 2018-01-22 15:31:33 -03:00
parent ecb8c88233
commit 2d7d9b5d9f
3 changed files with 6 additions and 27 deletions

View file

@ -157,11 +157,11 @@ Migrations.add('add-swimlanes', () => {
const swimlane = Swimlanes.findOne({ boardId: board._id });
let swimlaneId = '';
if (swimlane)
swimlaneId = swimlane._id
swimlaneId = swimlane._id;
else
swimlaneId = Swimlanes.direct.insert({
boardId: board._id,
title: 'Default'
boardId: board._id,
title: 'Default',
});
Cards.find({ boardId: board._id }).forEach((card) => {