aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusodhi <61431818+usodhi@users.noreply.github.com>2020-09-06 12:24:03 +0530
committerusodhi <61431818+usodhi@users.noreply.github.com>2020-09-06 12:24:03 +0530
commit41c890ed4ffadc8fd6734052b8aa5accb463cd7f (patch)
treecf5f3fa3c458935dffecb96ee678962b1b6ab5c5
parent07a2ffea4f4ee92818d8f9f4e0f09085a25a5bfe (diff)
extra line
-rw-r--r--src/client/views/collections/CollectionMasonryViewFieldRow.tsx1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionMasonryViewFieldRow.tsx b/src/client/views/collections/CollectionMasonryViewFieldRow.tsx
index ecffd7577..65695d22a 100644
--- a/src/client/views/collections/CollectionMasonryViewFieldRow.tsx
+++ b/src/client/views/collections/CollectionMasonryViewFieldRow.tsx
@@ -144,7 +144,6 @@ export class CollectionMasonryViewFieldRow extends React.Component<CMVFieldRowPr
const newDoc = Docs.Create.TextDocument(value, { _autoHeight: true, _showTitle: Doc.UserDoc().showTitle ? "title" : undefined, _width: 200, title: value });
const onLayoutDoc = this.onLayoutDoc(key);
(onLayoutDoc ? newDoc : newDoc[DataSym])[key] = this.getValue(this.props.heading);
- Doc.SetInPlace(newDoc, key, this.getValue(this.props.heading), true);
const docs = this.props.parent.childDocList;
return docs ? (docs.splice(0, 0, newDoc) ? true : false) : this.props.parent.props.addDocument(newDoc);
}