diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-04-01 17:15:14 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-04-01 17:15:14 -0400 |
commit | 4859d4e3f5827c3341d43d19a5309d2ec25ab67b (patch) | |
tree | c1afb8631bbad43f690b9dac0be8d6e326f025ee /src/new_fields/util.ts | |
parent | 0a6a4fae448cb4948bc0e8eab9de6309a4af6d22 (diff) |
fixed warnings and some compile errors. Made a key value layout and extened DocumentBox to have a childLayoutKey field
Diffstat (limited to 'src/new_fields/util.ts')
-rw-r--r-- | src/new_fields/util.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/new_fields/util.ts b/src/new_fields/util.ts index 3a1fd41f8..8c719ccd8 100644 --- a/src/new_fields/util.ts +++ b/src/new_fields/util.ts @@ -12,7 +12,7 @@ function _readOnlySetter(): never { throw new Error("Documents can't be modified in read-only mode"); } -let tracing = false; +const tracing = false; export function TraceMobx() { tracing && trace(); } |