diff options
| author | bobzel <zzzman@gmail.com> | 2020-08-14 21:39:18 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-08-14 21:39:18 -0400 |
| commit | 4e3ed774c9ac3d1365c67125ddc97df9de245f41 (patch) | |
| tree | 0ef5059b8ff5b242080ee726929bec7932b5ceda /src/fields | |
| parent | 80ff6de0b5faa4e4c36fd2ed12ae463a7f6040aa (diff) | |
fixed default documents that were missing the 'system' tag. fixed catalog to have default worksapce documents in it.
Diffstat (limited to 'src/fields')
| -rw-r--r-- | src/fields/ScriptField.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fields/ScriptField.ts b/src/fields/ScriptField.ts index 9391f56ac..1fb71fefb 100644 --- a/src/fields/ScriptField.ts +++ b/src/fields/ScriptField.ts @@ -98,6 +98,7 @@ export class ScriptField extends ObjectField { if (script?.options.capturedVariables) { const doc = Doc.assign(new Doc, script.options.capturedVariables); + doc.system = true; this.captures = new ProxyField(doc); } this.setterscript = setterscript; |
