aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionFreeForm
diff options
context:
space:
mode:
authorAndrew Kim <andrewdkim@users.noreply.github.com>2019-05-04 17:55:52 -0400
committerAndrew Kim <andrewdkim@users.noreply.github.com>2019-05-04 17:55:52 -0400
commit7ef63f53c1c7fdf23c7a18a37b67c49c97692db7 (patch)
tree0e3aad024fee306e0f87318f67bb93519aa73d02 /src/client/views/collections/collectionFreeForm
parentcecd09917f23fc83c87cffc4fddf5fe1f8331bac (diff)
new changes
Diffstat (limited to 'src/client/views/collections/collectionFreeForm')
-rw-r--r--src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
index d81a340b0..69b880d20 100644
--- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
+++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx
@@ -72,7 +72,7 @@ export class CollectionFreeFormView extends CollectionSubView(PanZoomDocument) {
}
public getActiveDocuments = () => {
const curPage = FieldValue(this.Document.curPage, -1);
- return FieldValue(this.children, [] as Doc[]).filter(doc => {
+ return FieldValue(this.children, [] as Doc[]).filter((doc) => {
var page = NumCast(doc.page, -1);
return page === curPage || page === -1;
});