diff --git a/src/core/plugins/oas3/wrap-components/parameters.jsx b/src/core/plugins/oas3/wrap-components/parameters.jsx
index 50b33b56..46831422 100644
--- a/src/core/plugins/oas3/wrap-components/parameters.jsx
+++ b/src/core/plugins/oas3/wrap-components/parameters.jsx
@@ -107,9 +107,13 @@ class Parameters extends Component {
this.toggleTab("parameters")} className={`tab-item ${this.state.parametersVisible && "active"}`}>
Parameters
- this.toggleTab("callbacks")} className={`tab-item ${this.state.callbackVisible && "active"}`}>
-
Callbacks
-
+ { operation.get("callbacks") ?
+ (
+ this.toggleTab("callbacks")} className={`tab-item ${this.state.callbackVisible && "active"}`}>
+
Callbacks
+
+ ) : null
+ }
{ allowTryItOut ? (