1
0

feat(task): move task priority to the front when showing tasks inline

This commit is contained in:
kolaente
2023-09-06 15:53:40 +02:00
parent 7746d39161
commit beb016400e
3 changed files with 43 additions and 49 deletions

View File

@ -17,6 +17,7 @@
:class="{ 'done': task.done, 'show-project': showProject && project}"
class="tasktext"
>
<priority-label :priority="task.priority" :done="task.done"/>
<span>
<router-link
v-if="showProject && typeof project !== 'undefined'"
@ -77,8 +78,6 @@
<defer-task v-if="+new Date(task.dueDate) > 0 && showDefer" v-model="task" ref="deferDueDate"/>
</CustomTransition>
<priority-label :priority="task.priority" :done="task.done"/>
<span>
<span class="project-task-icon" v-if="task.attachments.length > 0">
<icon icon="paperclip"/>