We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 355335b commit a72c3feCopy full SHA for a72c3fe
src/templates/endpoint.html
@@ -19,6 +19,6 @@ <h4>
19
</li>
20
</ul>
21
</div>
22
-<ul class="list-unstyled collapse operations" ng-class="{in:api.open}">
+<ul class="list-unstyled collapse operations in" ng-if="api.open">
23
<li ng-repeat="op in api.operations track by $index" class="operation {{op.httpMethod}}" ng-include="'templates/operation.html'"></li>
24
src/templates/operation.html
@@ -7,7 +7,7 @@
7
8
</a>
9
10
-<div class="content collapse" ng-class="{in:op.open}">
+<div class="content collapse in" ng-if="op.open">
11
<div class="h5" ng-if="op.deprecated" swagger-translate="operationDeprected"></div>
12
<div ng-if="op.description">
13
<h5 swagger-translate="operationImplementationNotes"></h5>
0 commit comments