You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-21 23:17:42 +02:00
Tools: Added eslint rule arrow-parens
This commit is contained in:
@ -130,7 +130,7 @@ class RevisionService extends BaseService {
|
||||
|
||||
if (!changes.length) break;
|
||||
|
||||
const noteIds = changes.map(a => a.item_id);
|
||||
const noteIds = changes.map((a) => a.item_id);
|
||||
const notes = await Note.modelSelectAll(`SELECT * FROM notes WHERE is_conflict = 0 AND encryption_applied = 0 AND id IN ("${noteIds.join('","')}")`);
|
||||
|
||||
for (let i = 0; i < changes.length; i++) {
|
||||
|
Reference in New Issue
Block a user