Fix lint errors in lint error fix.

Thanks to xet7 !
This commit is contained in:
Lauri Ojansivu 2020-04-22 21:00:31 +03:00
parent e7603298d7
commit 9e95c06415
9 changed files with 47 additions and 49 deletions

View file

@ -86,7 +86,9 @@ BlazeComponent.extendComponent({
query['members.userId'] = Meteor.userId();
else query.permission = 'public';
return Boards.find(query, { sort: { sort: 1 /* boards default sorting */ } });
return Boards.find(query, {
sort: { sort: 1 /* boards default sorting */ },
});
},
isStarred() {
const user = Meteor.user();