diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-02-08 17:48:02 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-02-08 17:48:02 +0900 |
| commit | 650187deaff1b2950d9471ac3ac9fdc2db942863 (patch) | |
| tree | 8878d537bab6559a8b332c2f91a0696f2a30d5b8 /packages/frontend/src/components/index.ts | |
| parent | enhance(client): use VuePlyr (diff) | |
| download | misskey-650187deaff1b2950d9471ac3ac9fdc2db942863.tar.gz misskey-650187deaff1b2950d9471ac3ac9fdc2db942863.tar.bz2 misskey-650187deaff1b2950d9471ac3ac9fdc2db942863.zip | |
perf(client): do not render custom emojis in user names
#9778
Diffstat (limited to 'packages/frontend/src/components/index.ts')
| -rw-r--r-- | packages/frontend/src/components/index.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/packages/frontend/src/components/index.ts b/packages/frontend/src/components/index.ts index 560870f84c..4ddebe7827 100644 --- a/packages/frontend/src/components/index.ts +++ b/packages/frontend/src/components/index.ts @@ -6,7 +6,6 @@ import MkAcct from './global/MkAcct.vue'; import MkAvatar from './global/MkAvatar.vue'; import MkEmoji from './global/MkEmoji.vue'; import MkCustomEmoji from './global/MkCustomEmoji.vue'; -import MkUserName from './global/MkUserName.vue'; import MkEllipsis from './global/MkEllipsis.vue'; import MkTime from './global/MkTime.vue'; import MkUrl from './global/MkUrl.vue'; @@ -28,7 +27,6 @@ export default function(app: App) { app.component('MkAvatar', MkAvatar); app.component('MkEmoji', MkEmoji); app.component('MkCustomEmoji', MkCustomEmoji); - app.component('MkUserName', MkUserName); app.component('MkEllipsis', MkEllipsis); app.component('MkTime', MkTime); app.component('MkUrl', MkUrl); @@ -50,7 +48,6 @@ declare module '@vue/runtime-core' { MkAvatar: typeof MkAvatar; MkEmoji: typeof MkEmoji; MkCustomEmoji: typeof MkCustomEmoji; - MkUserName: typeof MkUserName; MkEllipsis: typeof MkEllipsis; MkTime: typeof MkTime; MkUrl: typeof MkUrl; |