fix(kanban): move comment count right before assignees

Due to different sizes of the icons (which is a different issue) this makes it look better.
This commit is contained in:
kolaente
2025-12-17 23:52:51 +01:00
parent bb80c20fef
commit 0dcaebf73e

View File

@@ -83,10 +83,6 @@
>
<Icon icon="paperclip" />
</span>
<CommentCount
:task="task"
class="project-task-icon"
/>
<span
v-if="!isEditorContentEmpty(task.description)"
class="icon"
@@ -99,6 +95,10 @@
>
<Icon icon="history" />
</span>
<CommentCount
:task="task"
class="project-task-icon"
/>
<AssigneeList
v-if="task.assignees.length > 0"
:assignees="task.assignees"