We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d40e62 commit 83a8972Copy full SHA for 83a8972
src/core/plugins/deep-linking/layout.js
@@ -173,6 +173,11 @@ export default {
173
return state.get("scrollToKey")
174
},
175
isShownKeyFromUrlHashArray(state, urlHashArray) {
176
+ // If there are more than 2 segments, treat all segments except the last one as the tag
177
+ if (urlHashArray.length > 2) {
178
+ urlHashArray = [urlHashArray.slice(0, 1).join('/'), urlHashArray.at(-1)]
179
+ }
180
+
181
const [tag, operationId] = urlHashArray
182
// We only put operations in the URL
183
if(operationId) {
0 commit comments