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 01e5b56 commit 754292cCopy full SHA for 754292c
web-app/src/views/UI.vue
@@ -144,7 +144,7 @@ export default {
144
);
145
}
146
document.querySelector('.swagger-ui .info .title small.version-stamp pre.version')
147
- .insertAdjacentHTML('beforeend', data?.openapi.includes('.') ? " " + data?.openapi.split('.', 2).join('.') : " " + data?.openapi)
+ .innerHTML = data?.openapi.includes('.') ? "OAS " + data?.openapi.split('.', 2).join('.') : "OAS " + data?.openapi;
148
149
150
});
0 commit comments