Revert "fix: 🐛 make recently used group"

This reverts commit 806591cb35.
This commit is contained in:
ThatOneCalculator 2023-04-01 12:22:46 -07:00
parent 806591cb35
commit e516685cbc
No known key found for this signature in database
GPG Key ID: 8703CACD01000000
1 changed files with 10 additions and 12 deletions

View File

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