Skip to content

Commit

Permalink
fix(W-15607551): bindings error
Browse files Browse the repository at this point in the history
  • Loading branch information
leandrogilcarrano committed May 3, 2024
1 parent 6faa787 commit 884d18c
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions src/ApiBodyDocumentElement.js
Original file line number Diff line number Diff line change
Expand Up @@ -617,27 +617,6 @@ export class ApiBodyDocumentElement extends AmfHelperMixin(LitElement) {
<div slot="markdown-html" class="markdown-html" part="markdown-html" ?data-with-title="${hasTypeName}"></div>
</arc-marked>` : ''}
${this._isAsyncAPI(this.amf) && !!this.bindings ?
html`<ul class="bindings-container-list">
${this.bindings.map(item => html`<li>
<p class="bindings-header">
<label>Message specific information:</label>
<span class="binding-type"> ${item.bindingType}</span>
</p>
${item.key!==false ?
html `
<div class="bindings-body">
<label>key</label>
<span class="binding-key">${item.key}</span>
<span class="binding-data-type">${item.dataType}</span>
</div>
`
: ''}
</li>`)}
</ul>`
: ''}
${_isObject ?
html`<api-type-document
.amf="${amf}"
Expand Down

0 comments on commit 884d18c

Please sign in to comment.