diff options
| author | bobzel <zzzman@gmail.com> | 2020-09-17 02:58:34 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-09-17 02:58:34 -0400 |
| commit | 19af1ce5d8216dd5eac3df0def1c059d7d8975ec (patch) | |
| tree | 551310f03e18b0a1468db6a5d7b2053b479e1533 /src/client/views/collections/CollectionMasonryViewFieldRow.tsx | |
| parent | 2efd66bcef6329e4e816604ebd5a382e033dc2c6 (diff) | |
changed text box headers from a template to a title bar.
Diffstat (limited to 'src/client/views/collections/CollectionMasonryViewFieldRow.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionMasonryViewFieldRow.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionMasonryViewFieldRow.tsx b/src/client/views/collections/CollectionMasonryViewFieldRow.tsx index cb7ffb0e7..7014966c7 100644 --- a/src/client/views/collections/CollectionMasonryViewFieldRow.tsx +++ b/src/client/views/collections/CollectionMasonryViewFieldRow.tsx @@ -141,7 +141,7 @@ export class CollectionMasonryViewFieldRow extends React.Component<CMVFieldRowPr addDocument = (value: string, shiftDown?: boolean) => { this._createAliasSelected = false; const key = StrCast(this.props.parent.props.Document._pivotField); - const newDoc = Docs.Create.TextDocument(value, { _autoHeight: true, _showTitle: Doc.UserDoc().showTitle ? "title" : undefined, _width: 200, title: value }); + const newDoc = Docs.Create.TextDocument(value, { _autoHeight: true, _width: 200, title: value }); const onLayoutDoc = this.onLayoutDoc(key); (onLayoutDoc ? newDoc : newDoc[DataSym])[key] = this.getValue(this.props.heading); const docs = this.props.parent.childDocList; |
