Compare commits

..
2 Commits
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -94,7 +94,7 @@ const path: ComputedRef<Path> = computed(() => {
const isEditorPath = !!(doc && !doc.dir && doc.text) const isEditorPath = !!(doc && !doc.dir && doc.text)
const canonicalBase = !fullPath ? '/' : doc?.dir ? `/${fullPath}/` : `/${fullPath}` const canonicalBase = !fullPath ? '/' : doc?.dir ? `/${fullPath}/` : `/${fullPath}`
const canonicalPath = query const canonicalPath = query
? rawPath // keep search URL shape untouched ? `${rawPath}//${query}` // keep search URL shape untouched
: canonicalBase : canonicalBase
const pathList = isEditorPath ? routePathList.slice(0, -1) : routePathList const pathList = isEditorPath ? routePathList.slice(0, -1) : routePathList
const breadcrumbPathList = routePathList const breadcrumbPathList = routePathList
@@ -60,6 +60,7 @@ input#FileRenameInput {
padding: .75em; padding: .75em;
font-weight: 600; font-weight: 600;
width: auto; width: auto;
text-align: center;
} }
</style> </style>