Oliwia Rogala
Oliwia Rogala
As we're moving to merging options with dots in names like `syntaxHighlight.theme` into parent settings like `syntaxHighlight`, we have an issue with `urls.primaryName`. The `urls` setting is an array and...
Refs #9158 Supersedes #9346
### Describe the bug you're encountering Swagger UI does not show validation errors on try it out for object parameters in OpenAPI 3.0 specifications. ### To reproduce... Steps to reproduce...
### Q&A (please complete the following information) - OS: macOS - Browser: chrome - Version: 122.0.6261.69 - Swagger/OpenAPI version: OpenAPI 3.0 ### Content & configuration Example Swagger/OpenAPI definition: ```yaml openapi:...
### Describe the bug you're encountering Request body value in try it out isn't being updated when switching to a different content type, if the value was edited. ### To...
Refs #9673 Request body with content type `application/json` should now correctly validate missing required values and incorrect value types, and show errors. I had an issue with making it work...
When inputting values for the API key and bearer token, there's a possibility of autocompletion, which can potentially reveal previously used secrets. We want these values to remain visible to...
There are configuration options, such as `modelPropertyMacro` and `parameterMacro`, which do not have any default values defined in: https://github.com/swagger-api/swagger-ui/blob/d5e56e5d75be4edc777fb8432a484e22af690bf1/src/core/config/defaults.js#L6 We need to identify all of the missing options and assign...
### Content & configuration Swagger/OpenAPI definition: ```yaml openapi: 3.1.0 info: title: Example generation test version: 1.0.0 paths: /foo: get: responses: '200': content: application/json: schema: $ref: '#/components/schemas/Foo' components: schemas: Foo: type:...