diff options
author | Sam Wilkins <35748010+samwilkins333@users.noreply.github.com> | 2019-10-09 16:59:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-09 16:59:11 -0400 |
commit | 062a938dae7e78b59aaf9a706d2b656cc4474ac6 (patch) | |
tree | dbbbfe1238a4babd3638132ea48f7e2332e7c540 /src/client/documents/Documents.ts | |
parent | 0890639c166df6558c3a5c0fd3d427157b3549de (diff) | |
parent | ae9584b6a0b588e0b854a7c5b56723e1a71d47d3 (diff) |
Merge pull request #293 from browngraphicslab/exif
Exif
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 34e146f0e..9d1a6ed3e 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -256,7 +256,7 @@ export namespace Docs { let title = prototypeId.toUpperCase().replace(upper, `_${upper}`); // synthesize the default options, the type and title from computed values and // whatever options pertain to this specific prototype - let options = { title: title, type: type, baseProto: true, ...defaultOptions, ...(template.options || {}) }; + let options = { title, type, baseProto: true, ...defaultOptions, ...(template.options || {}) }; let primary = layout.view.LayoutString(layout.ext); let collectionView = layout.collectionView; if (collectionView) { |