From 5c490e75213f0f876c35ab4fb6cf71eefa3afab7 Mon Sep 17 00:00:00 2001 From: syuilo Date: Mon, 28 Dec 2020 23:05:30 +0900 Subject: Bug fix and refactoring --- src/client/components/notification.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/client/components') diff --git a/src/client/components/notification.vue b/src/client/components/notification.vue index 0c6be82bb8..2fe8500891 100644 --- a/src/client/components/notification.vue +++ b/src/client/components/notification.vue @@ -61,12 +61,12 @@ import { defineComponent } from 'vue'; import { faIdCardAlt, faPlus, faQuoteLeft, faQuoteRight, faRetweet, faReply, faAt, faCheck, faPollH } from '@fortawesome/free-solid-svg-icons'; import { faClock } from '@fortawesome/free-regular-svg-icons'; -import noteSummary from '../../misc/get-note-summary'; +import { getNoteSummary } from '../../misc/get-note-summary'; import XReactionIcon from './reaction-icon.vue'; import MkFollowButton from './follow-button.vue'; import notePage from '../filters/note'; import { userPage } from '../filters/user'; -import { locale } from '../i18n'; +import { i18n } from '@/i18n'; import * as os from '@/os'; export default defineComponent({ @@ -91,7 +91,7 @@ export default defineComponent({ }, data() { return { - getNoteSummary: (text: string) => noteSummary(text, locale), + getNoteSummary: (text: string) => getNoteSummary(text, i18n.locale), followRequestDone: false, groupInviteDone: false, connection: null, -- cgit v1.2.3-freya