Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/core/components/parameter-row.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export default class ParameterRow extends Component {
let itemType = schema.getIn(["items", "type"])

let value = paramWithMeta ? paramWithMeta.get("value") : ""
let commonExt = showCommonExtensions ? getCommonExtensions(param) : null
let commonExt = showCommonExtensions ? getCommonExtensions(schema) : null
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

great reuse of our existing version-specific logic!

let extensions = showExtensions ? getExtensions(param) : null

let paramItems // undefined
Expand Down