Web: show task type in the task details

The task type was intended to be always shown, but a mistake in the field
name + a misunderstanding caused them to be always hidden.
This commit is contained in:
Sybren A. Stüvel 2022-08-01 22:30:51 +02:00
parent b3370cdf0d
commit e3e0968d88

View File

@ -27,10 +27,8 @@
</dd> </dd>
</template> </template>
<template v-if="taskData.type"> <dt class="field-type" title="Task Type">Task Type</dt>
<dt class="field-type" title="Type">Type</dt> <dd>{{ taskData.task_type }}</dd>
<dd>{{ taskData.type }}</dd>
</template>
<dt class="field-priority" title="Priority">Priority</dt> <dt class="field-priority" title="Priority">Priority</dt>
<dd>{{ taskData.priority }}</dd> <dd>{{ taskData.priority }}</dd>