-
Notifications
You must be signed in to change notification settings - Fork 9.2k
Closed
Description
Version: ft/oas3 branch
The first time the "Callbacks" section is expanded or collapsed, the animation behaves oddly.
Steps to reproduce:
- Load the spec below into the UI.
- Expand the POST.
- Switch to the Callbacks tab.
- Expand the callback.
- Collapse the callback.
openapi: 3.0.0
info:
title: A simple webhook subscription
version: 1.0.0
paths:
/subscribe:
post:
requestBody:
content:
application/json:
schema:
type: object
properties:
url:
type: string
format: uri
responses:
'201':
description: Created subscription to webhook
callbacks:
mainHook:
'$request.body#/url':
post:
responses:
'200':
description: webhook successfully processed
