feat: add tryItOutEnabled configuration (#6865)

* feat: add tryItOutEnabled configuration

allow users to set tryItOutEnabled: true to display
the "Try it out" section by default

tryItOutEnabled to take === "true" for the
query string value or === true if someone
implements query string type parsing in the query
This commit is contained in:
Kyle Hoskins
2021-01-26 11:00:38 -06:00
committed by GitHub
parent 470e2fed9b
commit 265bdc07b7
10 changed files with 58 additions and 2 deletions

View File

@@ -7,8 +7,11 @@ import { Iterable, fromJS, Map } from "immutable"
export default class OperationContainer extends PureComponent {
constructor(props, context) {
super(props, context)
const { tryItOutEnabled } = props.getConfigs()
this.state = {
tryItOutEnabled: false,
tryItOutEnabled: tryItOutEnabled === true || tryItOutEnabled === "true",
executeInProgress: false
}
}