Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 747bfa0

Browse files
authoredSep 10, 2024··
Merge pull request #91 from advanced-rest-client/feat/W-16600179/fix-annotation-type
feat/W-16600179/fix-annotation-type
2 parents c95e8da + 72898b0 commit 747bfa0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@api-components/api-method-documentation",
33
"description": "A HTTP method documentation build from AMF model",
4-
"version": "5.2.25",
4+
"version": "5.2.26",
55
"license": "Apache-2.0",
66
"main": "index.js",
77
"module": "index.js",

‎src/ApiMethodDocumentation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -850,7 +850,7 @@ export class ApiMethodDocumentation extends AmfHelperMixin(LitElement) {
850850
${this._deprecatedWarningTemplate()}
851851
${this._getUrlTemplate()}
852852
${this._getTraitsTemplate()}
853-
${hasCustomProperties ? html`<api-annotation-document .shape="${method}"></api-annotation-document>` : ''}
853+
${hasCustomProperties ? html`<api-annotation-document .amf="${this.amf}" .shape="${method}"></api-annotation-document>` : ''}
854854
${this._getDescriptionTemplate()}
855855
${this._getRequestTemplate()}
856856
${this._getReturnsTemplate()}

0 commit comments

Comments
 (0)
Please sign in to comment.