diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/components/avatars.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/avatars.vue b/src/client/components/avatars.vue index 5d1aa26a6b..db618dc7bf 100644 --- a/src/client/components/avatars.vue +++ b/src/client/components/avatars.vue @@ -1,6 +1,6 @@ <template> <div> - <div v-for="user in us" :key="user.id" style="width:32px;height:32px;margin-right:8px;"> + <div v-for="user in us" :key="user.id" style="display:inline-block;width:32px;height:32px;margin-right:8px;"> <mk-avatar :user="user" style="width:32px;height:32px;"/> </div> </div> |