🎨
This commit is contained in:
parent
e8a098af62
commit
ad8ddbf12f
1 changed files with 3 additions and 3 deletions
|
@ -143,7 +143,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<MkNoteSub v-for="note in replies" :key="note.id" :note="note" :class="$style.reply" :detail="true"/>
|
<MkNoteSub v-for="note in replies" :key="note.id" :note="note" :class="$style.reply" :detail="true"/>
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="tab === 'renotes'" :class="$style.tab_renotes">
|
<div v-else-if="tab === 'renotes'" :class="$style.tab_renotes">
|
||||||
<MkPagination :pagination="renotesPagination">
|
<MkPagination :pagination="renotesPagination" :disableAutoLoad="true">
|
||||||
<template #default="{ items }">
|
<template #default="{ items }">
|
||||||
<MkA v-for="item in items" :key="item.id" :to="userPage(item.user)">
|
<MkA v-for="item in items" :key="item.id" :to="userPage(item.user)">
|
||||||
<MkUserCardMini :user="item.user" :withChart="false"/>
|
<MkUserCardMini :user="item.user" :withChart="false"/>
|
||||||
|
@ -158,9 +158,9 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<span style="margin-left: 4px;">{{ appearNote.reactions[reaction] }}</span>
|
<span style="margin-left: 4px;">{{ appearNote.reactions[reaction] }}</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<MkPagination v-if="reactionTabType" :key="reactionTabType" :pagination="reactionsPagination">
|
<MkPagination v-if="reactionTabType" :key="reactionTabType" :pagination="reactionsPagination" :disableAutoLoad="true">
|
||||||
<template #default="{ items }">
|
<template #default="{ items }">
|
||||||
<div class="_gaps_s">
|
<div style="display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); grid-gap: 12px;">
|
||||||
<MkA v-for="item in items" :key="item.id" :to="userPage(item.user)">
|
<MkA v-for="item in items" :key="item.id" :to="userPage(item.user)">
|
||||||
<MkUserCardMini :user="item.user" :withChart="false"/>
|
<MkUserCardMini :user="item.user" :withChart="false"/>
|
||||||
</MkA>
|
</MkA>
|
||||||
|
|
Loading…
Reference in a new issue