fixed runOnAttributeChange event

This commit is contained in:
azivner
2018-08-10 14:31:57 +02:00
parent 965dbcbc9a
commit 9e96272eb3
8 changed files with 21 additions and 18 deletions

View File

@@ -14,7 +14,7 @@ async function exec(req) {
async function run(req) {
const note = await repository.getNote(req.params.noteId);
const result = await scriptService.executeNote(req, note);
const result = await scriptService.executeNote(note, note);
return { executionResult: result };
}