aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionNoteTakingViewColumn.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2022-08-03 18:59:00 -0400
committerbobzel <zzzman@gmail.com>2022-08-03 18:59:00 -0400
commit29d0c334b0bb28b6ae6e1f94fae12d1b4ee0e545 (patch)
tree5c1d769005abca78f2e6284386c30a19dd93ed6b /src/client/views/collections/CollectionNoteTakingViewColumn.tsx
parent55bac585fa0b8d6c3f513ccecb22456d1d361040 (diff)
fixed dragging external documents onto notetaking view
Diffstat (limited to 'src/client/views/collections/CollectionNoteTakingViewColumn.tsx')
-rw-r--r--src/client/views/collections/CollectionNoteTakingViewColumn.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/views/collections/CollectionNoteTakingViewColumn.tsx b/src/client/views/collections/CollectionNoteTakingViewColumn.tsx
index 55d032498..5ba262418 100644
--- a/src/client/views/collections/CollectionNoteTakingViewColumn.tsx
+++ b/src/client/views/collections/CollectionNoteTakingViewColumn.tsx
@@ -286,7 +286,7 @@ export class CollectionNoteTakingViewColumn extends React.Component<CSVFieldColu
<>
{headingView}
{
- <div>
+ <div style={{ height: '100%' }}>
<div
key={`${heading}-stack`}
className={`collectionNoteTakingView-Nodes`}
@@ -337,7 +337,6 @@ export class CollectionNoteTakingViewColumn extends React.Component<CSVFieldColu
style={{
//TODO: change this so that it's based on the column width
width: this.columnWidth,
- height: '100%',
background: this._background,
}}
ref={this.createColumnDropRef}