Fix indentation

This commit is contained in:
syuilo 2019-09-04 14:35:21 +09:00
parent efe92724a4
commit 4db710a4b0
1 changed files with 23 additions and 23 deletions

View File

@ -1,27 +1,27 @@
<template> <template>
<transition name="zoom-in-top"> <transition name="zoom-in-top">
<div class="buebdbiu" ref="popover" v-if="show"> <div class="buebdbiu" ref="popover" v-if="show">
<i18n path="few-users" v-if="users.length <= 10"> <i18n path="few-users" v-if="users.length <= 10">
<span slot="users"> <span slot="users">
<b v-for="u in users" :key="u.id" style="margin-right: 12px;"> <b v-for="u in users" :key="u.id" style="margin-right: 12px;">
<mk-avatar :user="u" style="width: 24px; height: 24px; margin-right: 2px;"/> <mk-avatar :user="u" style="width: 24px; height: 24px; margin-right: 2px;"/>
<mk-user-name :user="u" :nowrap="false" style="line-height: 24px;"/> <mk-user-name :user="u" :nowrap="false" style="line-height: 24px;"/>
</b> </b>
</span> </span>
<mk-reaction-icon slot="reaction" :reaction="reaction" ref="icon" /> <mk-reaction-icon slot="reaction" :reaction="reaction" ref="icon" />
</i18n> </i18n>
<i18n path="many-users" v-if="10 < users.length"> <i18n path="many-users" v-if="10 < users.length">
<span slot="users"> <span slot="users">
<b v-for="u in users" :key="u.id" style="margin-right: 12px;"> <b v-for="u in users" :key="u.id" style="margin-right: 12px;">
<mk-avatar :user="u" style="width: 24px; height: 24px; margin-right: 2px;"/> <mk-avatar :user="u" style="width: 24px; height: 24px; margin-right: 2px;"/>
<mk-user-name :user="u" :nowrap="false" style="line-height: 24px;"/> <mk-user-name :user="u" :nowrap="false" style="line-height: 24px;"/>
</b> </b>
</span> </span>
<span slot="ommited">{{ count - 10 }}</span> <span slot="ommited">{{ count - 10 }}</span>
<mk-reaction-icon slot="reaction" :reaction="reaction" ref="icon" /> <mk-reaction-icon slot="reaction" :reaction="reaction" ref="icon" />
</i18n> </i18n>
</div> </div>
</transition> </transition>
</template> </template>
<script lang="ts"> <script lang="ts">