aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-12-21 15:15:54 -0500
committerbobzel <zzzman@gmail.com>2023-12-21 15:15:54 -0500
commit4e045584f5800543145a69710151e3b674544e21 (patch)
tree227aab4f5b56e44a60b8b7d163de4b4641344ba8
parent6693adb16545cc932fe9d244a15c658288adadc7 (diff)
parent4d61c583f39eb8ab4f112a278a1f1329b30ea97c (diff)
Merge branch 'moreUpgrading' into dataViz-annotations
-rw-r--r--src/client/views/nodes/DocumentView.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx
index ab413e6f2..a05ea3390 100644
--- a/src/client/views/nodes/DocumentView.tsx
+++ b/src/client/views/nodes/DocumentView.tsx
@@ -259,8 +259,8 @@ export class DocumentViewInternal extends DocComponent<DocumentViewInternalProps
makeObservable(this);
}
- @observable _componentView: Opt<DocComponentView>; // needs to be accessed from DocumentView wrapper class
- @observable _animateScaleTime: Opt<number>; // milliseconds for animating between views. defaults to 300 if not uset
+ @observable _componentView: Opt<DocComponentView> = undefined; // needs to be accessed from DocumentView wrapper class
+ @observable _animateScaleTime: Opt<number> = undefined; // milliseconds for animating between views. defaults to 300 if not uset
@observable _animateScalingTo = 0;
public get animateScaleTime() {