diff --git a/src/core/plugins/oas3/components/operation-link.jsx b/src/core/plugins/oas3/components/operation-link.jsx index f747e262..85f40ab0 100644 --- a/src/core/plugins/oas3/components/operation-link.jsx +++ b/src/core/plugins/oas3/components/operation-link.jsx @@ -10,10 +10,11 @@ export default class OperationLink extends Component { let description = link.get("description") return -
{name}{description ? `: ${description}` : ""}
+
{name}{description ? `: ${description}` : ""}
+        Operation `{targetOp}`

Parameters {padString(0, JSON.stringify(parameters, null, 2)) || "{}"}

- Headers {padString(0, JSON.stringify(headers, null, 2)) || "{}"}
+ Headers {padString(0, JSON.stringify(headers, null, 2)) || "{}"}
}