diff options
author | bobzel <zzzman@gmail.com> | 2022-02-10 17:12:19 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-02-10 17:12:19 -0500 |
commit | 956628a22c2d8ae21eb76c70f8f0a5a4edc9ae75 (patch) | |
tree | 535fd5b10420d579d5334d22c2e6374b12feecf2 /src/fields/util.ts | |
parent | a6d904bcd18a2c9962abfd9b5b325340f6b18b0d (diff) |
switched scripts to use a cache to avoid recompiling. simplified some things with documentView and zooming to avoid invalidations.
Diffstat (limited to 'src/fields/util.ts')
-rw-r--r-- | src/fields/util.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fields/util.ts b/src/fields/util.ts index c708affe3..cef3123d6 100644 --- a/src/fields/util.ts +++ b/src/fields/util.ts @@ -20,7 +20,7 @@ function _readOnlySetter(): never { throw new Error("Documents can't be modified in read-only mode"); } -const tracing = false; +const tracing = true; export function TraceMobx() { tracing && trace(); } |