summaryrefslogtreecommitdiff
path: root/src/client/components
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2020-02-08 16:51:27 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2020-02-08 16:51:27 +0900
commit9c06544c4664575207d088601ae9a1b9e756dbcb (patch)
treef6a3b5a1155da801d7709e277a988e1ff48e153e /src/client/components
parent:art: (diff)
downloadmisskey-9c06544c4664575207d088601ae9a1b9e756dbcb.tar.gz
misskey-9c06544c4664575207d088601ae9a1b9e756dbcb.tar.bz2
misskey-9c06544c4664575207d088601ae9a1b9e756dbcb.zip
wip
Diffstat (limited to 'src/client/components')
-rw-r--r--src/client/components/avatars.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/components/avatars.vue b/src/client/components/avatars.vue
index 0dc1ece3bf..5d1aa26a6b 100644
--- a/src/client/components/avatars.vue
+++ b/src/client/components/avatars.vue
@@ -1,6 +1,8 @@
<template>
<div>
- <mk-avatar v-for="user in us" :user="user" :key="user.id" style="width:32px;height:32px;"/>
+ <div v-for="user in us" :key="user.id" style="width:32px;height:32px;margin-right:8px;">
+ <mk-avatar :user="user" style="width:32px;height:32px;"/>
+ </div>
</div>
</template>