diff options
author | bobzel <zzzman@gmail.com> | 2021-03-20 00:50:26 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-20 00:50:26 -0400 |
commit | 05e562534763d1c15218ef82b6cb8e8d9bba35b1 (patch) | |
tree | d60921b34179dd6bd56414bcc4036d6c675d28a5 /src/fields/util.ts | |
parent | 54c8424a1e8999a2f3a82e3463671ddf2a3c84f6 (diff) |
cleaned up warnings. fixed webBox annotations to write to correct key so that they appear on startup.
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 3e0a314ef..631cb7160 100644 --- a/src/fields/util.ts +++ b/src/fields/util.ts @@ -100,7 +100,7 @@ const _setterImpl = action(function (target: any, prop: string | symbol | number redo: () => receiver[prop] = value, undo: () => { // console.log("Undo: " + prop + " = " + curValue); // bcz: uncomment to log undo - receiver[prop] = curValue + receiver[prop] = curValue; } }); return true; |