diff options
author | bobzel <zzzman@gmail.com> | 2023-04-10 11:32:44 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-04-10 11:32:44 -0400 |
commit | 68c6c36af823255824a6b0692e8c33618c2d7ca2 (patch) | |
tree | bad87616a8678b1bb1d88415912e3e2e8417aec2 /src/fields/Doc.ts | |
parent | bfa2a11f63fc373dd78836753c61441a13ee5d0a (diff) |
fixed brushing of fonticon boxes with dropdowns. made line charts use computed values instead of observables
Diffstat (limited to 'src/fields/Doc.ts')
-rw-r--r-- | src/fields/Doc.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts index e89f5db52..1db56cbdd 100644 --- a/src/fields/Doc.ts +++ b/src/fields/Doc.ts @@ -1394,7 +1394,7 @@ export namespace Doc { }); } export function UnBrushAllDocs() { - brushManager.BrushedDoc.clear(); + runInAction(() => brushManager.BrushedDoc.clear()); } export function getDocTemplate(doc?: Doc) { |