Skip to content

Commit

Permalink
更新:优化分区表格列标题及部分字段命名
Browse files Browse the repository at this point in the history
  • Loading branch information
Bronya0 committed Dec 22, 2024
1 parent a6e3306 commit e98a9fb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/frontend/src/components/Topics.vue
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ const handleMenuSelect = async (key, row) => {
const partitions_columns = [
{title: 'ID', key: 'partition', sorter: 'default', width: 10, resizable: true},
{
title: '分区故障',
title: 'Health',
key: 'err',
sorter: 'default',
width: 20,
Expand Down Expand Up @@ -514,7 +514,7 @@ const partitions_columns = [
ellipsis: {tooltip: {style: {maxWidth: '800px'},}},
},
{
title: '积压',
title: 'Lag',
key: '积压',
sorter: 'default',
width: 15,
Expand All @@ -526,11 +526,11 @@ const partitions_columns = [
}
}
},
{title: 'Leader ID', key: 'leader', sorter: 'default', width: 15, resizable: true},
{title: 'LeaderID', key: 'leader', sorter: 'default', width: 15, resizable: true},
{title: 'LeaderEpoch', key: 'LeaderEpoch', sorter: 'default', width: 15, resizable: true},
{title: '托管此分区的副本ID集', key: 'replicas', sorter: 'default', width: 15, resizable: true},
{title: 'ISR副本ID集', key: 'isr', sorter: 'default', width: 15, resizable: true},
{title: '离线副本ID集', key: 'OfflineReplicas', sorter: 'default', width: 15, resizable: true},
{title: 'Replicas', key: 'replicas', sorter: 'default', width: 15, resizable: true},
{title: 'ISR', key: 'isr', sorter: 'default', width: 15, resizable: true},
{title: 'ErrorReplicas', key: 'OfflineReplicas', sorter: 'default', width: 15, resizable: true},
]
const config_columns = [
Expand Down

0 comments on commit e98a9fb

Please sign in to comment.