diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2019-09-04 14:35:21 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-09-04 14:35:21 +0900 |
| commit | 4db710a4b0b1cf9b6d9ac9f0034213004d2e1e59 (patch) | |
| tree | 22099d3217bbd06a034b467118e9bf4e17fb811c /src/client | |
| parent | Update README.md [AUTOGEN] (#5390) (diff) | |
| download | misskey-4db710a4b0b1cf9b6d9ac9f0034213004d2e1e59.tar.gz misskey-4db710a4b0b1cf9b6d9ac9f0034213004d2e1e59.tar.bz2 misskey-4db710a4b0b1cf9b6d9ac9f0034213004d2e1e59.zip | |
Fix indentation
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/app/common/views/components/reactions-viewer.details.vue | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/src/client/app/common/views/components/reactions-viewer.details.vue b/src/client/app/common/views/components/reactions-viewer.details.vue index e9b15d7daf..1a2912ba37 100644 --- a/src/client/app/common/views/components/reactions-viewer.details.vue +++ b/src/client/app/common/views/components/reactions-viewer.details.vue @@ -1,27 +1,27 @@ <template> - <transition name="zoom-in-top"> - <div class="buebdbiu" ref="popover" v-if="show"> - <i18n path="few-users" v-if="users.length <= 10"> - <span slot="users"> - <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-user-name :user="u" :nowrap="false" style="line-height: 24px;"/> - </b> - </span> - <mk-reaction-icon slot="reaction" :reaction="reaction" ref="icon" /> - </i18n> - <i18n path="many-users" v-if="10 < users.length"> - <span slot="users"> - <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-user-name :user="u" :nowrap="false" style="line-height: 24px;"/> - </b> - </span> - <span slot="ommited">{{ count - 10 }}</span> - <mk-reaction-icon slot="reaction" :reaction="reaction" ref="icon" /> - </i18n> - </div> - </transition> +<transition name="zoom-in-top"> + <div class="buebdbiu" ref="popover" v-if="show"> + <i18n path="few-users" v-if="users.length <= 10"> + <span slot="users"> + <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-user-name :user="u" :nowrap="false" style="line-height: 24px;"/> + </b> + </span> + <mk-reaction-icon slot="reaction" :reaction="reaction" ref="icon" /> + </i18n> + <i18n path="many-users" v-if="10 < users.length"> + <span slot="users"> + <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-user-name :user="u" :nowrap="false" style="line-height: 24px;"/> + </b> + </span> + <span slot="ommited">{{ count - 10 }}</span> + <mk-reaction-icon slot="reaction" :reaction="reaction" ref="icon" /> + </i18n> + </div> +</transition> </template> <script lang="ts"> |