Skip to content

Commit

Permalink
Merge pull request #91 from advanced-rest-client/feat/W-16600179/fix-…
Browse files Browse the repository at this point in the history
…annotation-type

feat/W-16600179/fix-annotation-type
  • Loading branch information
leandrogilcarrano authored Sep 10, 2024
2 parents c95e8da + 72898b0 commit 747bfa0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@api-components/api-method-documentation",
"description": "A HTTP method documentation build from AMF model",
"version": "5.2.25",
"version": "5.2.26",
"license": "Apache-2.0",
"main": "index.js",
"module": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/ApiMethodDocumentation.js
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ export class ApiMethodDocumentation extends AmfHelperMixin(LitElement) {
${this._deprecatedWarningTemplate()}
${this._getUrlTemplate()}
${this._getTraitsTemplate()}
${hasCustomProperties ? html`<api-annotation-document .shape="${method}"></api-annotation-document>` : ''}
${hasCustomProperties ? html`<api-annotation-document .amf="${this.amf}" .shape="${method}"></api-annotation-document>` : ''}
${this._getDescriptionTemplate()}
${this._getRequestTemplate()}
${this._getReturnsTemplate()}
Expand Down

0 comments on commit 747bfa0

Please sign in to comment.