Skip to content

Commit

Permalink
Merge branch 'fix/#5659/alarms-list-remediation' into 'develop'
Browse files Browse the repository at this point in the history
[Issue #5659] Alarms list remediation

See merge request canopsis/canopsis-pro!4276
  • Loading branch information
mmourcia committed Oct 28, 2024
2 parents 4da54c0 + f12d5df commit d9bf949
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<template #type="{ item }">
{{ $t(`remediation.instruction.types.${item.type}`) }}
</template>
<template #launched_at="{ item }">
{{ item.launched_at | date('long', '-') }}
<template #started_at="{ item }">
{{ item.started_at | date('long', '-') }}
</template>
<template #completed_at="{ item }">
{{ item.completed_at | date('long', '-') }}
Expand Down Expand Up @@ -69,9 +69,9 @@ export default {
return [
{ text: this.$t('remediation.instruction.name'), value: 'name' },
{ text: this.$t('common.type'), value: 'type' },
{ text: this.$t('remediation.instructionExecute.jobs.launchedAt'), value: 'launched_at' },
{ text: this.$t('remediation.instructionExecute.jobs.launchedAt'), value: 'started_at' },
{ text: this.$t('remediation.instructionExecute.jobs.completedAt'), value: 'completed_at' },
{ text: this.$t('remediation.instructionExecute.jobs.completedAt'), value: 'author.display_name' },
{ text: this.$t('common.author'), value: 'author.display_name' },
{ text: this.$t('common.status'), value: 'status' },
];
},
Expand Down

0 comments on commit d9bf949

Please sign in to comment.