Skip to content

Commit

Permalink
Merge pull request #110 from rzechen/master
Browse files Browse the repository at this point in the history
修复搜索文件夹后无法进入的问题
  • Loading branch information
jamebal committed May 21, 2024
2 parents 805dbcd + 987beaa commit 553cb6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ShowFile/ShowFile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4073,7 +4073,7 @@ export default {
this.pathList.push(item);
this.pagination.pageIndex = 1;
const folder = row.id ? `&folder=${row.id}` : ''
this.$router.push(`?vmode=${this.vmode}${keyword}${folder}${queryTagId}${basePath}`);
this.$router.push(`?vmode=${this.vmode}${keyword}${folder}${queryTagId}${this.basePath}`);
this.searchFileAndOpenDir(row);
} else {
let notHomePage = this.$route.path.length > 1
Expand Down

0 comments on commit 553cb6d

Please sign in to comment.