diff options
| author | Tyler Schicke <tyler_schicke@brown.edu> | 2019-07-16 13:40:20 -0400 |
|---|---|---|
| committer | Tyler Schicke <tyler_schicke@brown.edu> | 2019-07-16 13:40:20 -0400 |
| commit | 7f6666500f157c5884377d714137426cf05e7569 (patch) | |
| tree | 72cae9c2684c446873e95572c3f97a4977dc8617 /src/client/documents | |
| parent | 748c8874369edb1c962925037701f1c27e23d462 (diff) | |
Changed search to display extension documents as the extended documents
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 177810444..5bbfe1c49 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) { |
