diff options
| author | yipstanley <stanley_yip@brown.edu> | 2019-07-16 17:48:16 -0400 |
|---|---|---|
| committer | yipstanley <stanley_yip@brown.edu> | 2019-07-16 17:48:16 -0400 |
| commit | f18be9418b9237acd847eaf71adc034226c54695 (patch) | |
| tree | 55d1af22c1b008196eb68eb80f82d4c659259d8a /src/client/documents | |
| parent | 7a4310f95da38cf5de55e487030284157acc58d8 (diff) | |
| parent | 2e12b7e348ec842ddc2deb6a47f58b6312f2aa95 (diff) | |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web
Diffstat (limited to 'src/client/documents')
| -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 85fc721da..af2b95659 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -235,7 +235,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, ...defaultOptions, ...(template.options || {}) }; + let options = { title: title, type: type, baseProto: true, ...defaultOptions, ...(template.options || {}) }; let primary = layout.view.LayoutString(); let collectionView = layout.collectionView; if (collectionView) { |
