Disable Online Validation badge for OAS3
This commit is contained in:
@@ -1,11 +1,13 @@
|
|||||||
import Markdown from "./markdown"
|
import Markdown from "./markdown"
|
||||||
import parameters from "./parameters"
|
import parameters from "./parameters"
|
||||||
import VersionStamp from "./version-stamp"
|
import VersionStamp from "./version-stamp"
|
||||||
|
import OnlineValidatorBadge from "./online-validator-badge"
|
||||||
import Model from "./model"
|
import Model from "./model"
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
Markdown,
|
Markdown,
|
||||||
parameters,
|
parameters,
|
||||||
VersionStamp,
|
VersionStamp,
|
||||||
model: Model
|
model: Model,
|
||||||
|
onlineValidatorBadge: OnlineValidatorBadge
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,6 @@
|
|||||||
|
import React from "react"
|
||||||
|
import { OAS3ComponentWrapFactory } from "../helpers"
|
||||||
|
|
||||||
|
// We're disabling the Online Validator Badge until the online validator
|
||||||
|
// can handle OAS3 specs.
|
||||||
|
export default OAS3ComponentWrapFactory(() => null)
|
||||||
Reference in New Issue
Block a user