From ecffa4ec0d30d47e6d85dda8ffc4a9e5c95cb336 Mon Sep 17 00:00:00 2001 From: Vladimir Kibisov <88668176+KrySeyt@users.noreply.github.com> Date: Sat, 5 Oct 2024 00:23:10 +0300 Subject: [PATCH] Fix AsyncAPI 2.6.0 operation label (#1835) * Downgrade AsyncAPI React component version * Downgrade AsyncAPI CSS version --- faststream/asyncapi/site.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/faststream/asyncapi/site.py b/faststream/asyncapi/site.py index 9b11565c6a..8cc837c69e 100644 --- a/faststream/asyncapi/site.py +++ b/faststream/asyncapi/site.py @@ -10,10 +10,10 @@ from faststream.asyncapi.schema import Schema -ASYNCAPI_JS_DEFAULT_URL = "https://unpkg.com/@asyncapi/react-component@1.0.0-next.54/browser/standalone/index.js" +ASYNCAPI_JS_DEFAULT_URL = "https://unpkg.com/@asyncapi/react-component@1.0.0-next.47/browser/standalone/index.js" ASYNCAPI_CSS_DEFAULT_URL = ( - "https://unpkg.com/@asyncapi/react-component@1.0.0-next.54/styles/default.min.css" + "https://unpkg.com/@asyncapi/react-component@1.0.0-next.46/styles/default.min.css" )