perf: Add task description

This commit is contained in:
wangruidong
2024-09-09 17:00:31 +08:00
committed by Bryan
parent b3d0be2f60
commit 8bb2c66b99

View File

@@ -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
},
{
@@ -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
}
]
}