Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed nested definitions listing #2315

Merged
merged 8 commits into from
Oct 18, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,8 @@ export class OperationDetails {
}

if (definition.type instanceof TypeDefinitionPropertyTypeCombination) {
result.push(definition.name);

if (definition.type.combination) {
definition.type.combination.forEach(combinationProperty => {
result.push(combinationProperty["name"]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<!-- /ko -->

<!-- ko if: item.displayAs === 'primitive' -->
<span class="text-monospace" data-bind="text: item, attr: { title: item.name }"></span>
<span class="text-monospace" data-bind="text: item.name, attr: { title: item.name }"></span>
<!-- /ko -->

<!-- /ko -->
Expand Down
Loading