Skip to content

Commit f73e093

Browse files
committed
lint
1 parent 6ea6a9c commit f73e093

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/models/eventsFactory.js

Lines changed: 3 additions & 3 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
},
@@ -414,7 +414,7 @@ class EventsFactory extends Factory {
414414
const firstRepetition = {
415415
_id: eventOriginal._id,
416416
payload: eventOriginal.payload,
417-
groupHash: eventOriginal.groupHash
417+
groupHash: eventOriginal.groupHash,
418418
};
419419

420420
repetitions.push(firstRepetition);

0 commit comments

Comments
 (0)