summaryrefslogtreecommitdiff
path: root/src/client/ui
diff options
context:
space:
mode:
authorMeiMei <30769358+mei23@users.noreply.github.com>2021-04-04 13:00:39 +0900
committerGitHub <noreply@github.com>2021-04-04 13:00:39 +0900
commit7d2126e2b200b8fd1d9e8f2d99ada411ef220ff2 (patch)
tree7f227998c5b02a63762517deb14050e10513a38c /src/client/ui
parentUse mfm-js for MFM parsing (#7415) (diff)
downloadsharkey-7d2126e2b200b8fd1d9e8f2d99ada411ef220ff2.tar.gz
sharkey-7d2126e2b200b8fd1d9e8f2d99ada411ef220ff2.tar.bz2
sharkey-7d2126e2b200b8fd1d9e8f2d99ada411ef220ff2.zip
Fix punycode deprecation warning (#7426)
Diffstat (limited to 'src/client/ui')
-rw-r--r--src/client/ui/chat/post-form.vue2
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 e5f4132c4b..9dd87edac4 100644
--- a/src/client/ui/chat/post-form.vue
+++ b/src/client/ui/chat/post-form.vue
@@ -52,7 +52,7 @@ import { faReply, faQuoteRight, faPaperPlane, faTimes, faUpload, faPollH, faGlob
import { faEyeSlash, faLaughSquint } from '@fortawesome/free-regular-svg-icons';
import insertTextAtCursor from 'insert-text-at-cursor';
import { length } from 'stringz';
-import { toASCII } from 'punycode';
+import { toASCII } from 'punycode/';
import * as mfm from 'mfm-js';
import { host, url } from '@client/config';
import { erase, unique } from '../../../prelude/array';