aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionNoteTakingViewColumn.tsx
diff options
context:
space:
mode:
authorljungster <parkerljung@gmail.com>2022-06-22 10:08:08 -0500
committerljungster <parkerljung@gmail.com>2022-06-22 10:08:08 -0500
commit323f846d035e78e729f918ccf2681f5f0834d98e (patch)
treedc3ccfd270bb7a46e1b6c3877d658e8ac15fde4f /src/client/views/collections/CollectionNoteTakingViewColumn.tsx
parentf745e1d7728e577bee9daa0a9bf52850d35fe23e (diff)
push before switching to childDocList
Diffstat (limited to 'src/client/views/collections/CollectionNoteTakingViewColumn.tsx')
-rw-r--r--src/client/views/collections/CollectionNoteTakingViewColumn.tsx7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/client/views/collections/CollectionNoteTakingViewColumn.tsx b/src/client/views/collections/CollectionNoteTakingViewColumn.tsx
index b299eb739..bdcb9c399 100644
--- a/src/client/views/collections/CollectionNoteTakingViewColumn.tsx
+++ b/src/client/views/collections/CollectionNoteTakingViewColumn.tsx
@@ -140,13 +140,6 @@ export class CollectionNoteTakingViewColumn extends React.Component<CSVFieldColu
newDoc[key] = colValue;
FormattedTextBox.SelectOnLoad = newDoc[Id];
FormattedTextBox.SelectOnLoadChar = forceEmptyNote ? "" : " ";
- // let currentDocs: Doc[] = []
- // const docsFromMap = this.props.docsByColumnHeader.get(colValue)
- // if (docsFromMap) {
- // currentDocs = [...docsFromMap]
- // }
- // currentDocs.push(newDoc)
- // this.props.setDocsForColHeader(colValue, currentDocs)
return this.props.addDocument?.(newDoc) || false;
}