aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2021-02-14 23:37:00 -0500
committerbobzel <zzzman@gmail.com>2021-02-14 23:37:00 -0500
commit690b803b9793659ebaebffc79c98dce71f4cf7ec (patch)
tree1e926dc0e519eca5aeeed53215f9eafee0ffa431 /src/client/views/collections
parent4ef4d06413169971a3919aa0c935eb321be7288b (diff)
mae RichTextField parseable from keyvalue. got rid of pause to insert text timestamps for simplicity. fixed transition typo.
Diffstat (limited to 'src/client/views/collections')
-rw-r--r--src/client/views/collections/TabDocView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/TabDocView.tsx b/src/client/views/collections/TabDocView.tsx
index d2a83b1dd..c1a1a6f04 100644
--- a/src/client/views/collections/TabDocView.tsx
+++ b/src/client/views/collections/TabDocView.tsx
@@ -368,7 +368,7 @@ export class TabDocView extends React.Component<TabDocViewProps> {
this._document._panX = vals.panX;
this._document._panY = vals.panY;
this._document._viewScale = vals.scale;
- this._document._viewTrasition = `transform ${focusSpeed}ms`;
+ this._document._viewTransition = `transform ${focusSpeed}ms`;
setTimeout(action(() => {
this._document!._viewTransition = undefined;
options?.afterFocus?.(false);