summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-04-21 03:32:16 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-04-21 03:32:16 +0900
commit83a53c100855bc7810ef84fc3983c40ef67b0be0 (patch)
tree34744d7b988e5cb73028d5ffdbe532c132e82666 /src/client
parentnodejs v16で動くように (diff)
downloadsharkey-83a53c100855bc7810ef84fc3983c40ef67b0be0.tar.gz
sharkey-83a53c100855bc7810ef84fc3983c40ef67b0be0.tar.bz2
sharkey-83a53c100855bc7810ef84fc3983c40ef67b0be0.zip
fix bug
Diffstat (limited to 'src/client')
-rw-r--r--src/client/pages/clip.vue2
-rw-r--r--src/client/pages/messaging/messaging-room.vue4
-rw-r--r--src/client/pages/settings/other.vue2
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,
}