Browse Source

Fix: #5669 online validator badge (#5909)

* fix: enable online validator badge

since online validator badge now can handle OAS3 specs
bubble
Tim Lai 4 years ago
committed by GitHub
parent
commit
10b08af5ec
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/core/plugins/oas3/wrap-components/online-validator-badge.js

+ 3
- 3
src/core/plugins/oas3/wrap-components/online-validator-badge.js View File

@@ -1,5 +1,5 @@
import { OAS3ComponentWrapFactory } from "../helpers"
import OnlineValidatorBadge from "core/components/online-validator-badge"

// We're disabling the Online Validator Badge until the online validator
// can handle OAS3 specs.
export default OAS3ComponentWrapFactory(() => null)
// OAS3 spec is now supported by the online validator.
export default OAS3ComponentWrapFactory(OnlineValidatorBadge)

Loading…
Cancel
Save