openapi-explorer 0.7.254 → 0.7.255

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openapi-explorer",
3
- "version": "0.7.254",
3
+ "version": "0.7.255",
4
4
  "description": "OpenAPI Explorer - API viewer with dynamically generated components, documentation, and interaction console",
5
5
  "author": "Rhosys Developers <developers@rhosys.ch>",
6
6
  "repository": {
@@ -1059,7 +1059,7 @@ export default class ApiRequest extends LitElement {
1059
1059
  this.responseElapsedMs = new Date() - fetchStart;
1060
1060
  tryBtnEl.disabled = false;
1061
1061
  this.responseStatus = fetchResponse.ok ? 'success' : 'error';
1062
- this.responseMessage = fetchResponse.statusText ? `${fetchResponse.statusText}:${fetchResponse.status}` : fetchResponse.status;
1062
+ this.responseMessage = fetchResponse.statusText ? `${fetchResponse.statusText} (${fetchResponse.status})` : fetchResponse.status;
1063
1063
  this.responseUrl = fetchResponse.url;
1064
1064
  this.responseHeaders = '';
1065
1065
  const headers = {};