You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the operation IDs have backslashes, clicking on the operations in the sidebar won't take me to the operation details. It seems that it needs an extra backslash character, as adding it to the URL manually makes it work.
Tested with the following spec file, on the live demo
openapi: "3.0.0"info:
version: 1.0.0title: Backslash Exampleservers:
- url: http://example.com/v1paths:
/pets:
get:
summary: List all petsoperationId: test\listPetstags:
- petsresponses:
'200':
description: A paged array of petscontent:
application/json:
schema:
type: string/dogs:
get:
summary: List all dogsoperationId: test\listDogstags:
- petsresponses:
'200':
description: A paged array of dogscontent:
application/json:
schema:
type: string
The text was updated successfully, but these errors were encountered:
When the operation IDs have backslashes, clicking on the operations in the sidebar won't take me to the operation details. It seems that it needs an extra backslash character, as adding it to the URL manually makes it work.
Tested with the following spec file, on the live demo
The text was updated successfully, but these errors were encountered: