diff options
author | bobzel <zzzman@gmail.com> | 2020-09-19 22:58:47 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-09-19 22:58:47 -0400 |
commit | b9735a34252459ee7f09bb58a49cc3da7a652ab7 (patch) | |
tree | d8e08878cc5280c53c969afee89d091af3bd28e3 | |
parent | d4f3dd01976739be98d25d77708856230eb35d3e (diff) |
switched from LivePlayground to Playground mode for read-only values.
-rw-r--r-- | src/client/DocServer.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/DocServer.ts b/src/client/DocServer.ts index 9da5b8632..d7dfa4498 100644 --- a/src/client/DocServer.ts +++ b/src/client/DocServer.ts @@ -42,7 +42,7 @@ export namespace DocServer { export var PlaygroundFields: string[]; export function setPlaygroundFields(livePlaygroundFields: string[]) { DocServer.PlaygroundFields = livePlaygroundFields; - livePlaygroundFields.forEach(f => DocServer.setFieldWriteMode(f, DocServer.WriteMode.LivePlayground)); + livePlaygroundFields.forEach(f => DocServer.setFieldWriteMode(f, DocServer.WriteMode.Playground)); } export function setFieldWriteMode(field: string, writeMode: WriteMode) { |