Skip to content

Commit 61a4989

Browse files
committed
Fix deep linking
1 parent a6bd0f4 commit 61a4989

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/core/containers/OperationContainer.jsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export default class OperationContainer extends PureComponent {
3232

3333
getComponent: PropTypes.func.isRequired,
3434
authActions: PropTypes.object,
35+
oas3Actions: PropTypes.object,
3536
authSelectors: PropTypes.object,
3637
specActions: PropTypes.object.isRequired,
3738
specSelectors: PropTypes.object.isRequired,
@@ -96,8 +97,8 @@ export default class OperationContainer extends PureComponent {
9697
}
9798

9899
toggleShown =() => {
99-
let { layoutActions, isShownKey, isShown } = this.props
100-
layoutActions.show(isShownKey, !isShown)
100+
let { layoutActions, tag, operationId, isShown } = this.props
101+
layoutActions.show(["operations", tag, operationId], !isShown)
101102
}
102103

103104
onTryoutClick =() => {

0 commit comments

Comments
 (0)