Fix indentation
This commit is contained in:
parent
efe92724a4
commit
4db710a4b0
@ -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">
|
||||||
|
Loading…
Reference in New Issue
Block a user