Skip to content

Commit

Permalink
fix: 文件列表后退、前进按钮,在根目录时无法点击问题修复 (#4923)
Browse files Browse the repository at this point in the history
Refs #4723
  • Loading branch information
john1298308460 authored and ssongliu committed May 13, 2024
1 parent 2c3bf92 commit 12c1d71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/views/host/file-management/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center mr-4">
<el-tooltip :content="$t('file.back')" placement="top">
<el-button :icon="Back" @click="back" circle :disabled="paths.length == 0" />
<el-button :icon="Back" @click="back" circle />
</el-tooltip>
<el-tooltip :content="$t('file.right')" placement="top">
<el-button :icon="Right" @click="right" circle :disabled="paths.length == 0" />
<el-button :icon="Right" @click="right" circle />
</el-tooltip>
<el-tooltip :content="$t('file.top')" placement="top">
<el-button :icon="Top" @click="top" circle :disabled="paths.length == 0" />
Expand Down

0 comments on commit 12c1d71

Please sign in to comment.