mirror of
https://github.com/zadam/trilium.git
synced 2025-10-20 23:29:02 +02:00
refactor(bulk_action): fix type error
This commit is contained in:
parent
94dad49e2f
commit
8f393d0bae
@ -162,9 +162,8 @@ function executeActions(actions: BulkAction[], noteIds: string[] | Set<string>)
|
||||
try {
|
||||
log.info(`Applying action handler to note ${resultNote.noteId}: ${JSON.stringify(action)}`);
|
||||
|
||||
const handler = ACTION_HANDLERS[action.name];
|
||||
//@ts-ignore
|
||||
handler(action as BulkAction, resultNote);
|
||||
const handler = ACTION_HANDLERS[action.name] as (a: typeof action, n: BNote) => void;
|
||||
handler(action, resultNote);
|
||||
} catch (e: any) {
|
||||
log.error(`ExecuteScript search action failed with ${e.message}`);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user