-
Notifications
You must be signed in to change notification settings - Fork 242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V2 feature parity #742
V2 feature parity #742
Conversation
* impement redoc's x-tagGroup feature * merge main * update documentation * fix filtered tags by group * remove tracked .idea files * add option to readme * merge main * fix lint * revert yarn.lock and linter
Co-authored-by: Christian A. Mathiesen <[email protected]>
Visit the preview URL for this PR (updated for commit b11d101): https://docusaurus-openapi-36b86--pr742-zr8xjeec.web.app (expires Sun, 14 Apr 2024 19:48:24 GMT) 🔥 via Firebase Hosting GitHub Action 🌎 |
* feat: Implement schema pages behind a config option `showSchemas` * Add `showSchemas` to petstore demo
if (!!value) { | ||
const children = cb(value as T); | ||
return render(children); | ||
if (value === undefined || value === "") { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sserrata this change introduced a bug in 3.0.0-beta.6, when guard
is called from SchemaItem/index.tsx
(for renderRequired
, value
is a boolean
.
The check on this line evaluates to false
and all <SchemaItem>
are rendered as required.
Description
Ports missing features/functionality from v2