diff --git a/demo/openapi.yaml b/demo/openapi.yaml
index 74c16b70..c570cc60 100644
--- a/demo/openapi.yaml
+++ b/demo/openapi.yaml
@@ -1193,7 +1193,7 @@ x-webhooks:
summary: New pet
description: Information about a new pet in the systems
operationId: newPet
- tags:
+ tags:
- pet
requestBody:
content:
@@ -1202,4 +1202,4 @@ x-webhooks:
$ref: "#/components/schemas/Pet"
responses:
"200":
- description: Return a 200 status to indicate that the data was received successfully
\ No newline at end of file
+ description: Return a 200 status to indicate that the data was received successfully
diff --git a/demo/playground/hmr-playground.tsx b/demo/playground/hmr-playground.tsx
index efd843ab..f378ca23 100644
--- a/demo/playground/hmr-playground.tsx
+++ b/demo/playground/hmr-playground.tsx
@@ -11,6 +11,11 @@ const userUrl = window.location.search.match(/url=(.*)$/);
const specUrl =
(userUrl && userUrl[1]) || (swagger ? 'swagger.yaml' : big ? 'big-openapi.json' : 'openapi.yaml');
-const options: RedocRawOptions = { nativeScrollbars: false, maxDisplayedEnumValues: 3 };
+const options: RedocRawOptions = {
+ nativeScrollbars: false,
+ maxDisplayedEnumValues: 3,
+ reverseEventsReadOnlyProps: true,
+ reverseEventsWriteOnlyProps: true,
+};
render(, document.getElementById('example'));
diff --git a/demo/playground/index.html b/demo/playground/index.html
index d322ee3e..7a3a5092 100644
--- a/demo/playground/index.html
+++ b/demo/playground/index.html
@@ -22,4 +22,4 @@