From 83a53c100855bc7810ef84fc3983c40ef67b0be0 Mon Sep 17 00:00:00 2001
From: syuilo <Syuilotan@yahoo.co.jp>
Date: Wed, 21 Apr 2021 03:32:16 +0900
Subject: [PATCH] fix bug

---
 src/client/pages/clip.vue                     | 2 +-
 src/client/pages/messaging/messaging-room.vue | 4 ++--
 src/client/pages/settings/other.vue           | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/client/pages/clip.vue b/src/client/pages/clip.vue
index 050bd4c979..8777975557 100644
--- a/src/client/pages/clip.vue
+++ b/src/client/pages/clip.vue
@@ -41,7 +41,7 @@ export default defineComponent({
 				title: this.clip.name,
 				icon: 'fas fa-paperclip',
 				action: {
-					icon: 'fas fa-ellipsis'H,
+					icon: 'fas fa-ellipsis-h',
 					handler: this.menu
 				}
 			} : null),
diff --git a/src/client/pages/messaging/messaging-room.vue b/src/client/pages/messaging/messaging-room.vue
index 1b49216322..44bfd6c51d 100644
--- a/src/client/pages/messaging/messaging-room.vue
+++ b/src/client/pages/messaging/messaging-room.vue
@@ -73,14 +73,14 @@ const Component = defineComponent({
 				userName: this.user,
 				avatar: this.user,
 				action: {
-					icon: 'fas fa-ellipsis'H,
+					icon: 'fas fa-ellipsis-h',
 					handler: this.menu,
 				},
 			} : {
 				title: this.group.name,
 				icon: 'fas fa-users',
 				action: {
-					icon: 'fas fa-ellipsis'H,
+					icon: 'fas fa-ellipsis-h',
 					handler: this.menu,
 				},
 			} : null),
diff --git a/src/client/pages/settings/other.vue b/src/client/pages/settings/other.vue
index 7aa6b37725..f73ff9cb21 100644
--- a/src/client/pages/settings/other.vue
+++ b/src/client/pages/settings/other.vue
@@ -61,7 +61,7 @@ export default defineComponent({
 		return {
 			[symbols.PAGE_INFO]: {
 				title: this.$ts.other,
-				icon: 'fas fa-ellipsis'H
+				icon: 'fas fa-ellipsis-h'
 			},
 			debug,
 		}