aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionViewBase.tsx
diff options
context:
space:
mode:
authorTyler Schicke <tyler_schicke@brown.edu>2019-02-18 02:35:01 -0500
committerTyler Schicke <tyler_schicke@brown.edu>2019-02-18 02:35:01 -0500
commit8a293ac029c4ab9973067fe40c3aa9b2f118d27d (patch)
tree2e20eb7cb7ae80b0a36fd46418bc040ad0efe438 /src/client/views/collections/CollectionViewBase.tsx
parent4ae8e7791d217a04a913caa75c8e276a50608865 (diff)
Delayed parsing of background layout in DocumentView
Diffstat (limited to 'src/client/views/collections/CollectionViewBase.tsx')
-rw-r--r--src/client/views/collections/CollectionViewBase.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionViewBase.tsx b/src/client/views/collections/CollectionViewBase.tsx
index a8dceff0a..4cbafe950 100644
--- a/src/client/views/collections/CollectionViewBase.tsx
+++ b/src/client/views/collections/CollectionViewBase.tsx
@@ -21,7 +21,7 @@ export interface CollectionViewProps {
isSelected: () => boolean;
isTopMost: boolean;
select: (ctrlPressed: boolean) => void;
- BackgroundView: Opt<DocumentView>;
+ BackgroundView?: () => JSX.Element;
ParentScaling: number;
}