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.
2 parents a9c2312 + 07c5f5f commit 452fff6Copy full SHA for 452fff6
src/rapidoc.js
@@ -221,7 +221,9 @@ export default class RapiDoc extends LitElement {
221
${!this.resolvedSpec.servers || (this.resolvedSpec.servers.length===0) ?``:html`
222
${this.resolvedSpec.servers.map(server => html`
223
<input type='radio' name='api_server' value='${server.url}' @change="${this.onApiServerChange}" checked style='margin:2px 0 5px 8px'/>
224
- ${server.url}<br/>
+ ${server.url}
225
+ ${server.description ? html`- ${server.description}` : ``}
226
+ <br/>
227
`
228
)}
229
`}
0 commit comments