aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionNoteTakingView.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/views/collections/CollectionNoteTakingView.tsx')
-rw-r--r--src/client/views/collections/CollectionNoteTakingView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionNoteTakingView.tsx b/src/client/views/collections/CollectionNoteTakingView.tsx
index 14d274cb2..1bf9a8fe4 100644
--- a/src/client/views/collections/CollectionNoteTakingView.tsx
+++ b/src/client/views/collections/CollectionNoteTakingView.tsx
@@ -136,7 +136,7 @@ export class CollectionNoteTakingView extends CollectionSubView<Partial<collecti
let changed = false;
this.filteredChildren.map(d => {
if (!d[this.pivotField]) {
- d[this.pivotField] = `0`
+ d[this.pivotField] = `1`
};
const sectionValue = (d[this.pivotField] ? d[this.pivotField] : `0`) as object;
// the next five lines ensures that floating point rounding errors don't create more than one section -syip