We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d9ba78 commit dca43aaCopy full SHA for dca43aa
src/components/task-detail/TaskDetailHistory.vue
@@ -21,7 +21,13 @@
21
class="text-xs font-semibold text-body">
22
{{ formatTimeShort(item.time) }}
23
</div>
24
- <div class="flex w-full gap-1 justify-center text-body text-sm">
+ <div
25
+ v-if="
26
+ item.taskHistoryType === 'STATUS_SWITCHED' ||
27
+ item.taskHistoryType === 'PROCESSOR_CHANGED' ||
28
+ item.taskHistoryType === 'PROCESSOR_ASSIGNED'
29
+ "
30
+ class="flex w-full gap-1 justify-center text-body text-sm">
31
<p>{{ HistoryMessageBefore[item.taskHistoryType] }}</p>
32
<p
33
v-if="item.taskHistoryType === 'STATUS_SWITCHED'"
0 commit comments