Skip to content

Commit 2369ed4

Browse files
committed
lint
1 parent 35ad0e4 commit 2369ed4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/models/eventsFactory.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class EventsFactory extends Factory {
100100

101101
const cursor = this.getCollection(this.TYPES.EVENTS)
102102
.find(query)
103-
.sort([['_id', -1]])
103+
.sort([ ['_id', -1] ])
104104
.limit(limit)
105105
.skip(skip);
106106

@@ -211,7 +211,7 @@ class EventsFactory extends Factory {
211211
...Object.fromEntries(
212212
Object
213213
.entries(filters)
214-
.map(([mark, exists]) => [`event.marks.${mark}`, { $exists: exists }])
214+
.map(([mark, exists]) => [`event.marks.${mark}`, { $exists: exists } ])
215215
),
216216
},
217217
},

0 commit comments

Comments
 (0)