diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 4e60ca2..fe45a74 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -94,7 +94,7 @@ const path: ComputedRef = computed(() => { const isEditorPath = !!(doc && !doc.dir && doc.text) const canonicalBase = !fullPath ? '/' : doc?.dir ? `/${fullPath}/` : `/${fullPath}` const canonicalPath = query - ? rawPath // keep search URL shape untouched + ? `${rawPath}//${query}` // keep search URL shape untouched : canonicalBase const pathList = isEditorPath ? routePathList.slice(0, -1) : routePathList const breadcrumbPathList = routePathList