aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-09-19 22:58:47 -0400
committerbobzel <zzzman@gmail.com>2020-09-19 22:58:47 -0400
commitb9735a34252459ee7f09bb58a49cc3da7a652ab7 (patch)
treed8e08878cc5280c53c969afee89d091af3bd28e3 /src
parentd4f3dd01976739be98d25d77708856230eb35d3e (diff)
switched from LivePlayground to Playground mode for read-only values.
Diffstat (limited to 'src')
-rw-r--r--src/client/DocServer.ts2
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) {