Skip to content

Commit

Permalink
Update PR8756: ui changes for DRS
Browse files Browse the repository at this point in the history
  • Loading branch information
weizhouapache committed Oct 18, 2024
1 parent f64aeb5 commit 3bcbb04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/src/views/infra/ClusterDRSTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
</template>
<template #bodyCell="{ column, text }">
<template v-if="column.key === 'successfulMigrations'">
{{ text.migrations.filter(m => m.jobstatus === 'SUCCEEDED').length }} / {{ text.migrations.length }}
{{ text.migrations.filter(m => m.migrationjobstatus === 'SUCCEEDED').length }} / {{ text.migrations.length }}
<!-- {{ text.migrations }} -->
</template>
<template v-else-if="column.key === 'created'">
Expand Down Expand Up @@ -214,9 +214,9 @@ export default {
generatedPlanMigrationColumns: generatedPlanMigrationColumns,
migrationColumns: generatedPlanMigrationColumns.concat([
{
key: 'jobstatus',
key: 'migrationjobstatus',
title: this.$t('label.status'),
dataIndex: 'jobstatus'
dataIndex: 'migrationjobstatus'
}
]),
loading: false,
Expand Down

0 comments on commit 3bcbb04

Please sign in to comment.