diff options
author | bobzel <zzzman@gmail.com> | 2021-03-30 11:21:30 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-30 11:21:30 -0400 |
commit | b359d42651e0385ffb06d2beb2ee2dbee1f880e7 (patch) | |
tree | dbe01bf62610677bad47ea6cf95fd2b1a9d9ec74 /src/client/views/nodes/ScriptingBox.tsx | |
parent | 6c689a999e22fc414386e39007ca0929057ff1d8 (diff) |
more cleanup
Diffstat (limited to 'src/client/views/nodes/ScriptingBox.tsx')
-rw-r--r-- | src/client/views/nodes/ScriptingBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/ScriptingBox.tsx b/src/client/views/nodes/ScriptingBox.tsx index 0afc61f54..183140cd7 100644 --- a/src/client/views/nodes/ScriptingBox.tsx +++ b/src/client/views/nodes/ScriptingBox.tsx @@ -29,7 +29,7 @@ type ScriptingDocument = makeInterface<[typeof ScriptingSchema, typeof documentS const ScriptingDocument = makeInterface(ScriptingSchema, documentSchema); @observer -export class ScriptingBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatableProps & FieldViewProps, ScriptingDocument>(ScriptingDocument, "annotations") { +export class ScriptingBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatableProps & FieldViewProps, ScriptingDocument>(ScriptingDocument) { private dropDisposer?: DragManager.DragDropDisposer; protected _multiTouchDisposer?: InteractionUtils.MultiTouchEventDisposer | undefined; |