diff --git a/src/core/plugins/oas3/components/operation-link.jsx b/src/core/plugins/oas3/components/operation-link.jsx index 6f9eef0a..af05aec4 100644 --- a/src/core/plugins/oas3/components/operation-link.jsx +++ b/src/core/plugins/oas3/components/operation-link.jsx @@ -10,13 +10,16 @@ class OperationLink extends Component { let parameters = link.get("parameters") && link.get("parameters").toJS() let description = link.get("description") - return -
{name}{description ? `: ${description}` : ""}
+ return
+
+ {name} + { description ? : null } +
         Operation `{targetOp}`

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