Skip to content

Commit 3bcbb04

Browse files
committed
Update PR8756: ui changes for DRS
1 parent f64aeb5 commit 3bcbb04

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ui/src/views/infra/ClusterDRSTab.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
</template>
8585
<template #bodyCell="{ column, text }">
8686
<template v-if="column.key === 'successfulMigrations'">
87-
{{ text.migrations.filter(m => m.jobstatus === 'SUCCEEDED').length }} / {{ text.migrations.length }}
87+
{{ text.migrations.filter(m => m.migrationjobstatus === 'SUCCEEDED').length }} / {{ text.migrations.length }}
8888
<!-- {{ text.migrations }} -->
8989
</template>
9090
<template v-else-if="column.key === 'created'">
@@ -214,9 +214,9 @@ export default {
214214
generatedPlanMigrationColumns: generatedPlanMigrationColumns,
215215
migrationColumns: generatedPlanMigrationColumns.concat([
216216
{
217-
key: 'jobstatus',
217+
key: 'migrationjobstatus',
218218
title: this.$t('label.status'),
219-
dataIndex: 'jobstatus'
219+
dataIndex: 'migrationjobstatus'
220220
}
221221
]),
222222
loading: false,

0 commit comments

Comments
 (0)