diff --git a/src/views/accounts/ChangeAuthPlan/AppChangeAuthPlan/ChangeAuthPlanDetail/AppChangeAuthPlanExecution/ChangeAuthPlanExecutionDetail/ChangeAuthPlanExecutionTaskList.vue b/src/views/accounts/ChangeAuthPlan/AppChangeAuthPlan/ChangeAuthPlanDetail/AppChangeAuthPlanExecution/ChangeAuthPlanExecutionDetail/ChangeAuthPlanExecutionTaskList.vue index bc41adef3..166caf94e 100644 --- a/src/views/accounts/ChangeAuthPlan/AppChangeAuthPlan/ChangeAuthPlanDetail/AppChangeAuthPlanExecution/ChangeAuthPlanExecutionDetail/ChangeAuthPlanExecutionTaskList.vue +++ b/src/views/accounts/ChangeAuthPlan/AppChangeAuthPlan/ChangeAuthPlanDetail/AppChangeAuthPlanExecution/ChangeAuthPlanExecutionDetail/ChangeAuthPlanExecutionTaskList.vue @@ -22,7 +22,7 @@ export default { tableConfig: { url: `/api/v1/xpack/change-auth-plan/app-plan-execution-subtask/?plan_execution_id=${this.object.id}`, columns: [ - 'app_display', 'system_user_display', 'is_success', 'reason', 'timedelta', 'date_start', 'actions' + 'app_display', 'system_user_display', 'is_success', 'reason_display', 'timedelta', 'date_start', 'actions' ], columnsMeta: { app_display: { @@ -35,6 +35,9 @@ export default { return { row.app_display } } }, + reason_display: { + label: this.$t('xpack.AccountBackupPlan.Reason') + }, system_user_display: { label: this.$t('xpack.ChangeAuthPlan.SystemUser') }, diff --git a/src/views/accounts/ChangeAuthPlan/AssetChangeAuthPlan/ChangeAuthPlanDetail/ChangeAuthPlanExecution/ChangeAuthPlanExecutionDetail/ChangeAuthPlanExecutionTaskList.vue b/src/views/accounts/ChangeAuthPlan/AssetChangeAuthPlan/ChangeAuthPlanDetail/ChangeAuthPlanExecution/ChangeAuthPlanExecutionDetail/ChangeAuthPlanExecutionTaskList.vue index d71dfe06e..8dd0e3ec5 100644 --- a/src/views/accounts/ChangeAuthPlan/AssetChangeAuthPlan/ChangeAuthPlanDetail/ChangeAuthPlanExecution/ChangeAuthPlanExecutionDetail/ChangeAuthPlanExecutionTaskList.vue +++ b/src/views/accounts/ChangeAuthPlan/AssetChangeAuthPlan/ChangeAuthPlanDetail/ChangeAuthPlanExecution/ChangeAuthPlanExecutionDetail/ChangeAuthPlanExecutionTaskList.vue @@ -22,7 +22,7 @@ export default { tableConfig: { url: `/api/v1/xpack/change-auth-plan/plan-execution-subtask/?plan_execution_id=${this.object.id}`, columns: [ - 'username', 'asset', 'is_success', 'reason', 'timedelta', 'date_start', 'actions' + 'username', 'asset', 'is_success', 'timedelta', 'date_start', 'reason_display', 'actions' ], columnsMeta: { asset: { @@ -42,6 +42,9 @@ export default { return row.timedelta.toFixed(2) + 's' } }, + reason_display: { + label: this.$t('xpack.AccountBackupPlan.Reason') + }, actions: { formatterArgs: { hasDelete: false,