Use proper type for size prop

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2022-08-26 12:45:46 +02:00
parent 7c5601eed6
commit 74d9e63888
2 changed files with 5 additions and 5 deletions

View File

@@ -26,8 +26,8 @@
v-tooltip="commentsHint"
class="icon-badge"
@click.stop="openComments">
<CommentUnreadIcon v-if="card.commentsUnread > 0" size="16" />
<CommentIcon v-else size="16" />
<CommentUnreadIcon v-if="card.commentsUnread > 0" :size="16" />
<CommentIcon v-else :size="16" />
<span>{{ card.commentsCount }}</span>
</div>
@@ -36,10 +36,10 @@
<span>{{ checkListCheckedCount }}/{{ checkListCount }}</span>
</div>
<TextIcon v-else-if="card.description.trim() && checkListCount == 0" size="16" decorative />
<TextIcon v-else-if="card.description.trim() && checkListCount == 0" :size="16" decorative />
<div v-if="card.attachmentCount > 0" class="icon-badge">
<AttachmentIcon size="16" />
<AttachmentIcon :size="16" />
<span>{{ card.attachmentCount }}</span>
</div>