aboutsummaryrefslogtreecommitdiff
path: root/src/client/documents/Documents.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-03-03 10:05:50 -0500
committerbobzel <zzzman@gmail.com>2023-03-03 10:05:50 -0500
commita95043b3fd0325f79cae080bc71e8fe06432bdc3 (patch)
tree15793cf2c63c4f180fcf73da54b3af82a2310920 /src/client/documents/Documents.ts
parentbcdd26bd71a40ba78cdc38d957c91cfa1d0b6d63 (diff)
fixed assigning non-setter functions
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r--src/client/documents/Documents.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts
index 70c57e8fa..ebd06dbe2 100644
--- a/src/client/documents/Documents.ts
+++ b/src/client/documents/Documents.ts
@@ -1417,7 +1417,7 @@ export namespace DocUtils {
});
funcs &&
Object.keys(funcs)
- .filter(key => key.endsWith('-setter'))
+ .filter(key => !key.endsWith('-setter'))
.map(key => {
const cfield = ComputedField.WithoutComputed(() => FieldValue(doc[key]));
if (ScriptCast(cfield)?.script.originalScript !== funcs[key]) {