aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/DocComponent.tsx
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-10-10 21:36:26 -0400
committerBob Zeleznik <zzzman@gmail.com>2019-10-10 21:36:26 -0400
commit9505eda799fdf3b0cd2e6bde2d80c18731caee2c (patch)
treee7ef514012d35c897333f1f3f2affeaec8868e15 /src/client/views/DocComponent.tsx
parent21aab2fbf28e9cf6d08366b57d368d120d6813bb (diff)
switching sidebar to a stacking view...
Diffstat (limited to 'src/client/views/DocComponent.tsx')
-rw-r--r--src/client/views/DocComponent.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/DocComponent.tsx b/src/client/views/DocComponent.tsx
index 93e852bef..2c5992259 100644
--- a/src/client/views/DocComponent.tsx
+++ b/src/client/views/DocComponent.tsx
@@ -21,7 +21,8 @@ interface DocAnnotatableProps {
fieldKey: string;
fieldExt: string;
whenActiveChanged: (isActive: boolean) => void;
- isSelected: () => boolean, renderDepth: number
+ isSelected: () => boolean;
+ renderDepth: number;
}
export function DocAnnotatableComponent<P extends DocAnnotatableProps, T>(schemaCtor: (doc: Doc) => T) {
class Component extends React.Component<P> {