Skip to content

Commit

Permalink
feat: 文件列表行内权限支持修改用户和用户组 (#5093)
Browse files Browse the repository at this point in the history
Refs #4981
  • Loading branch information
zhengkunwang223 committed May 22, 2024
1 parent 0a7144f commit ede664b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions frontend/src/views/host/file-management/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@
</el-link>
</template>
</el-table-column>
<el-table-column :label="$t('file.group')" prop="group">
<el-table-column :label="$t('file.group')" prop="group" show-overflow-tooltip>
<template #default="{ row }">
<el-link :underline="false" @click="openChown(row)">
{{ row.group ? row.group : '-' }} ({{ row.gid }})
Expand Down Expand Up @@ -863,7 +863,9 @@ const buttons = [
},
{
label: i18n.global.t('file.mode'),
click: openMode,
click: (row: File.File) => {
openBatchRole([row]);
},
},
{
label: i18n.global.t('file.compress'),
Expand Down

0 comments on commit ede664b

Please sign in to comment.