diff --git a/src/core/plugins/deep-linking/operation-wrapper.jsx b/src/core/plugins/deep-linking/operation-wrapper.jsx index ab2fb8e4115..bc7bd6610b2 100644 --- a/src/core/plugins/deep-linking/operation-wrapper.jsx +++ b/src/core/plugins/deep-linking/operation-wrapper.jsx @@ -10,7 +10,8 @@ const Wrapper = (Ori, system) => class OperationWrapper extends React.Component onLoad = (ref) => { const { operation } = this.props const { tag, operationId } = operation.toObject() - const isShownKey = ["operations", tag, operationId] + let { isShownKey } = operation.toObject() + isShownKey = isShownKey || ["operations", tag, operationId] system.layoutActions.readyToScroll(isShownKey, ref) }