diff options
| author | yipstanley <stanley_yip@brown.edu> | 2019-07-23 16:32:43 -0400 |
|---|---|---|
| committer | yipstanley <stanley_yip@brown.edu> | 2019-07-23 16:32:43 -0400 |
| commit | 3b740e1c1ac74e7aac45c136ec9df1b37e2dbc16 (patch) | |
| tree | 477e73d37781fd0c8366e44a77634656a0ed352a /src/client/views/collections/CollectionBaseView.tsx | |
| parent | de9b03ca6c7116949952bc428e8d9257959ad974 (diff) | |
pretty ui for changing section fitler and added base for colletion chromes
Diffstat (limited to 'src/client/views/collections/CollectionBaseView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionBaseView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionBaseView.tsx b/src/client/views/collections/CollectionBaseView.tsx index 72faf52c4..4cdbd8554 100644 --- a/src/client/views/collections/CollectionBaseView.tsx +++ b/src/client/views/collections/CollectionBaseView.tsx @@ -32,7 +32,7 @@ export interface CollectionRenderProps { export interface CollectionViewProps extends FieldViewProps { onContextMenu?: (e: React.MouseEvent) => void; - children: (type: CollectionViewType, props: CollectionRenderProps) => JSX.Element | JSX.Element[] | null; + children: (type: CollectionViewType, props: CollectionRenderProps) => JSX.Element | JSX.Element[] | null | (JSX.Element | null)[]; className?: string; contentRef?: React.Ref<HTMLDivElement>; } |
