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:
parent
bb80c20fef
commit
0dcaebf73e
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue