diff options
author | bobzel <zzzman@gmail.com> | 2021-07-27 14:31:30 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-07-27 14:31:30 -0400 |
commit | 8717e90d12c8caa16984f5a55eb8f442dcf5cbab (patch) | |
tree | 3cbd71d41cfb11cc78bd9bf2497d6d5acda23abd /src/client/util/Scripting.ts | |
parent | 26e9e0a554ee5aff001e2bc10b6802a4e830b63c (diff) |
fixe MakeClone to handle links properly. fixed cloning richtext to update rich text references to documents properly. fixed dragging to call MakeClone properly.
Diffstat (limited to 'src/client/util/Scripting.ts')
-rw-r--r-- | src/client/util/Scripting.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/Scripting.ts b/src/client/util/Scripting.ts index c3c3083be..f981f84cd 100644 --- a/src/client/util/Scripting.ts +++ b/src/client/util/Scripting.ts @@ -181,7 +181,7 @@ function Run(script: string | undefined, customParams: string[], diagnostics: an if (batch) { batch.end(); } - onError?.(error); + onError?.(script + " " + error); return { success: false, error, result: errorVal }; } }; |