Explorar o código

div 高度不足会导致无法完全显示 emoji, 只有当评论有多条, 扩展 div 高度后才能完全显示 emoji

reghao %!s(int64=2) %!d(string=hai) anos
pai
achega
0d4fc0633a
Modificáronse 1 ficheiros con 8 adicións e 8 borrados
  1. 8 8
      src/components/comment/components/EmojiSelector.vue

+ 8 - 8
src/components/comment/components/EmojiSelector.vue

@@ -26,7 +26,7 @@
 
 <script>
 export default {
-  name: 'ImojiSelector',
+  name: 'EmojiSelector',
   data() {
     return {
       currentCat: 'FrequentlyUsed',
@@ -85,7 +85,7 @@ export default {
           '👉',
           '👈',
           '👌',
-          '💩',
+          '💩'
         ],
         Symbols0: [
           '🤗',
@@ -141,7 +141,7 @@ export default {
           '🏀',
           '⚽',
           '🎮',
-          '🏊',
+          '🏊'
         ],
         Symbols1: [
           '🍗',
@@ -176,16 +176,16 @@ export default {
           '💊',
           '🤮',
           '🏆',
-          '👿',
-        ],
-      },
+          '👿'
+        ]
+      }
     }
   },
   computed: {
     currentEmojis() {
       return this.emojis[this.currentCat]
-    },
-  },
+    }
+  }
 }
 </script>