diff options
| author | bob <bcz@cs.brown.edu> | 2019-03-15 10:48:23 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-03-15 10:48:23 -0400 |
| commit | c17605b4d1fe04429b029ff5a161f31ce19f5fd4 (patch) | |
| tree | 62a824acf6be48014a19f12393c02a72186109c4 /src/client/views/collections/CollectionSchemaView.tsx | |
| parent | b90e4714f44f6e6cb948784d5ea77654c1d164d8 (diff) | |
think video resizing is fixed now.
Diffstat (limited to 'src/client/views/collections/CollectionSchemaView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionSchemaView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionSchemaView.tsx b/src/client/views/collections/CollectionSchemaView.tsx index 37620cd7c..14e1df8ca 100644 --- a/src/client/views/collections/CollectionSchemaView.tsx +++ b/src/client/views/collections/CollectionSchemaView.tsx @@ -49,7 +49,7 @@ export class CollectionSchemaView extends CollectionViewBase { let reference = React.createRef<HTMLDivElement>(); let onItemDown = setupDrag(reference, () => props.doc); return ( - <div onPointerDown={onItemDown} key={props.doc.Id} ref={reference}> + <div className="collectionSchemaView-cellContents" onPointerDown={onItemDown} style={{ height: "36px" }} key={props.doc.Id} ref={reference}> <EditableView contents={contents} height={36} GetValue={() => { let field = props.doc.Get(props.fieldKey); |
