Skip to content

Commit e611685

Browse files
committed
Fix lint errors.
1 parent 3edef95 commit e611685

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/publications/boards.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ Meteor.publishRelations('board', function(boardId, isArchived) {
7878
],
7979
// Sort required to ensure oplog usage
8080
}, { limit: 1, sort: { _id: 1 } }), function(boardId, board) {
81-
this.cursor(Lists.find({ boardId: boardId, archived: isArchived }));
82-
this.cursor(Swimlanes.find({ boardId: boardId, archived: isArchived }));
81+
this.cursor(Lists.find({ boardId, archived: isArchived }));
82+
this.cursor(Swimlanes.find({ boardId, archived: isArchived }));
8383
this.cursor(Integrations.find({ boardId }));
8484
this.cursor(CustomFields.find({ boardIds: {$in: [boardId]} }, { sort: { name: 1 } }));
8585

0 commit comments

Comments
 (0)