Skip to content

Commit

Permalink
Merge a2d5735 into c86f85e
Browse files Browse the repository at this point in the history
  • Loading branch information
yufeih authored May 6, 2023
2 parents c86f85e + a2d5735 commit 75c9e05
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion templates/common/ManagedReference.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ exports.transform = function (model) {
case 'namespace':
model.isNamespace = true;
if (model.children) groupChildren(model, namespaceCategory);
model[getTypePropertyName(model.type)] = true;
break;
case 'class':
case 'interface':
Expand Down
3 changes: 1 addition & 2 deletions templates/common/partials/namespaceSubtitle.tmpl.partial
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{{!Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE file in the project root for full license information.}}
{{^isNamespace}}

{{#inNamespace}}
{{__global.namespacesInSubtitle}}
{{/inNamespace}}
{{/isNamespace}}
{{#inClass}}
{{__global.classesInSubtitle}}
{{/inClass}}
Expand Down
4 changes: 2 additions & 2 deletions templates/default/partials/title.tmpl.partial
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
{{#inPackage}}
Package {{name.0.value}}
{{/inPackage}}
{{#inNamespace}}
{{#isNamespace}}
Namespace {{name.0.value}}
{{/inNamespace}}
{{/isNamespace}}
{{#inClass}}
Class {{name.0.value}}
{{/inClass}}
Expand Down

0 comments on commit 75c9e05

Please sign in to comment.