commit: 9fa0c05b35d175a8186899ec46933bf437a2444c
parent bf5bd4235d9de636566ba804580136cfd58980a0
Author: tusooa <tusooa@kazv.moe>
Date: Thu, 29 Jun 2023 11:43:49 -0400
Fix lint
Diffstat:
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/components/emoji_picker/emoji_picker.vue b/src/components/emoji_picker/emoji_picker.vue
@@ -9,15 +9,15 @@
>
<template #content>
<div class="heading">
+ <!--
+ Body scroll lock needs to be on every scrollable element on safari iOS.
+ Here we tell it to enable scrolling for this element.
+ See https://github.com/willmcpo/body-scroll-lock#vanilla-js
+ -->
<span
ref="header"
- class="emoji-tabs"
- <!--
- Body scroll lock needs to be on every scrollable element on safari iOS.
- Here we tell it to enable scrolling for this element.
- See https://github.com/willmcpo/body-scroll-lock#vanilla-js
- -->
v-body-scroll-lock="isInModal"
+ class="emoji-tabs"
>
<span
v-for="group in filteredEmojiGroups"
@@ -81,11 +81,11 @@
@input="$event.target.composing = false"
>
</div>
+ <!-- Enables scrolling for this element on safari iOS. See comments for header. -->
<DynamicScroller
ref="emoji-groups"
- class="emoji-groups"
- <!-- Enables scrolling for this element on safari iOS. See comments for header. -->
v-body-scroll-lock="isInModal"
+ class="emoji-groups"
:class="groupsScrolledClass"
:min-item-size="minItemSize"
:items="emojiItems"