summaryrefslogtreecommitdiff
path: root/src/client/components/launch-pad.vue
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-12-26 15:38:51 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-12-26 15:38:51 +0900
commit94598ab555fa8440d3cc2b0576ebd5d876c5a37c (patch)
treeeae5e806a20723396a5a70815c354eb168ec8288 /src/client/components/launch-pad.vue
parentフォローリクエストがなくてもフォロー承認が出来てし... (diff)
downloadmisskey-94598ab555fa8440d3cc2b0576ebd5d876c5a37c.tar.gz
misskey-94598ab555fa8440d3cc2b0576ebd5d876c5a37c.tar.bz2
misskey-94598ab555fa8440d3cc2b0576ebd5d876c5a37c.zip
Refactoring
Diffstat (limited to 'src/client/components/launch-pad.vue')
-rw-r--r--src/client/components/launch-pad.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/launch-pad.vue b/src/client/components/launch-pad.vue
index f732b675e7..4d2a3b2c77 100644
--- a/src/client/components/launch-pad.vue
+++ b/src/client/components/launch-pad.vue
@@ -65,7 +65,7 @@ export default defineComponent({
created() {
this.items = Object.keys(this.menuDef).filter(k => !this.menu.includes(k)).map(k => this.menuDef[k]).filter(def => def.show == null ? true : def.show).map(def => ({
type: def.to ? 'link' : 'button',
- text: this.$t(def.title),
+ text: this.$ts[def.title],
icon: def.icon,
to: def.to,
action: def.action,