Skip to content

Commit

Permalink
perf: Add task description
Browse files Browse the repository at this point in the history
  • Loading branch information
w940853815 committed Sep 9, 2024
1 parent b3d0be2 commit 3e712ad
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/views/settings/Task/TaskDetail/TaskDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ export default {
detailCardItems() {
return [
{
key: this.$t('Name'),
key: this.$t('TaskPath'),
value: this.object.name
},
{
key: this.$t('Comment'),
key: this.$t('Name'),
value: this.object.meta.comment
},
{
Expand All @@ -44,6 +44,10 @@ export default {
{
key: this.$t('LastPublishedTime'),
value: this.object.last_published_time
},
{
key: this.$t('Description'),
value: this.object.meta.description
}
]
}
Expand Down

0 comments on commit 3e712ad

Please sign in to comment.