diff options
| author | marihachi <marihachi0620@gmail.com> | 2021-04-10 17:50:18 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-10 17:50:18 +0900 |
| commit | 3a6331693a2c165fa6bb1a377ad7bf471f2b5550 (patch) | |
| tree | 64f5f0ca0b3d5edd894a310030ff21126104517a /src/client/ui | |
| parent | Tweak UI (diff) | |
| download | misskey-3a6331693a2c165fa6bb1a377ad7bf471f2b5550.tar.gz misskey-3a6331693a2c165fa6bb1a377ad7bf471f2b5550.tar.bz2 misskey-3a6331693a2c165fa6bb1a377ad7bf471f2b5550.zip | |
refactor mfm extract (#7434)
* refactor extractCustomEmojisFromMfm()
* refactor extract-hashtags
* refactor extract-mentions
* refactor extract-hashtags
* refactor extract-url-from-mfm
* refactor extract-mentions
Diffstat (limited to 'src/client/ui')
| -rw-r--r-- | src/client/ui/chat/post-form.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/ui/chat/post-form.vue b/src/client/ui/chat/post-form.vue index bdf18cf290..a9413ea8bc 100644 --- a/src/client/ui/chat/post-form.vue +++ b/src/client/ui/chat/post-form.vue @@ -56,7 +56,7 @@ import { toASCII } from 'punycode/'; import * as mfm from 'mfm-js'; import { host, url } from '@client/config'; import { erase, unique } from '../../../prelude/array'; -import extractMentions from '@/misc/extract-mentions'; +import { extractMentions } from '@/misc/extract-mentions'; import getAcct from '@/misc/acct/render'; import { formatTimeString } from '@/misc/format-time-string'; import { Autocomplete } from '@client/scripts/autocomplete'; |