We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c4e4d7 commit 8e3359cCopy full SHA for 8e3359c
packages/@vue/cli-ui/src/components/task/TaskItem.vue
@@ -7,6 +7,7 @@
7
selected
8
}
9
]"
10
+ v-tooltip.right="description"
11
@dblclick="runTask()"
12
>
13
<div class="content">
@@ -19,7 +20,7 @@
19
20
21
<ListItemInfo
22
:name="task.name"
- :description="(task.status === 'idle' && $t(task.description)) || status"
23
+ :description="description"
24
:selected="selected"
25
/>
26
@@ -63,6 +64,10 @@ export default {
63
64
65
logo () {
66
return this.task.icon || (this.task.plugin && this.task.plugin.logo)
67
+ },
68
+
69
+ description () {
70
+ return (this.task.status === 'idle' && this.$t(this.task.description)) || this.status
71
72
},
73
0 commit comments