Skip to content

Commit b9859ae

Browse files
committed
fix: sort the columns of the import tab table
1 parent d11f2bd commit b9859ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plugins/data_migration/frontend/public/templates/imports-tab.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div>
22
<cly-datatable-n class="bu-mx-5" :rows="list" :persist-key="importsTablePersistKey">
33
<template v-slot="scope">
4-
<el-table-column sortable="true" prop="app_names" :label="i18n('data-migration.applications')">
4+
<el-table-column sortable="true" prop="app_list" :label="i18n('data-migration.applications')">
55
<template v-slot="rowScope">
66
<span class="text-medium">
77
<div>
@@ -14,7 +14,7 @@
1414
</span>
1515
</template>
1616
</el-table-column>
17-
<el-table-column sortable="true" prop="step" :label="i18n('data-migration.table.step')">
17+
<el-table-column sortable="true" prop="status_text" :label="i18n('data-migration.table.step')">
1818
<template v-slot="rowScope">
1919
<div class="bu-py-6">
2020
<span class="text-medium">
@@ -23,7 +23,7 @@
2323
</div>
2424
</template>
2525
</el-table-column>
26-
<el-table-column sortable="true" prop="created" :label="i18n('data-migration.table.last-update')">
26+
<el-table-column sortable="true" prop="last_update" :label="i18n('data-migration.table.last-update')">
2727
<template v-slot="rowScope">
2828
<span class="text-medium">
2929
{{ rowScope.row.last_update }}

0 commit comments

Comments
 (0)