fix: 🐛 make recently used group

Closes #9784
This commit is contained in:
ThatOneCalculator 2023-04-01 12:19:27 -07:00
parent 93867ec927
commit 806591cb35
No known key found for this signature in database
GPG key ID: 8703CACD01000000

View file

@ -46,16 +46,18 @@
</section>
<section>
<header><i class="ph-alarm ph-bold ph-fw ph-lg"></i> {{ i18n.ts.recentUsed }}</header>
<div class="body">
<button
v-for="emoji in recentlyUsedEmojis"
:key="emoji"
class="_button item"
@click="chosen(emoji, $event)"
>
<MkEmoji class="emoji" :emoji="emoji" :normal="true"/>
</button>
<div v-once class="group">
<header><i class="ph-alarm ph-bold ph-fw ph-lg"></i> {{ i18n.ts.recentUsed }}</header>
<div class="body">
<button
v-for="emoji in recentlyUsedEmojis"
:key="emoji"
class="_button item"
@click="chosen(emoji, $event)"
>
<MkEmoji class="emoji" :emoji="emoji" :normal="true"/>
</button>
</div>
</div>
</section>
</div>