From 0554dd8375bffac688dfbce6cabf02fc4fbf36ad Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 7 Mar 2023 17:12:46 +0900 Subject: enhance(client): DM作成時にメンションも含むように MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/components/MkPostForm.vue | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'packages/frontend/src/components/MkPostForm.vue') diff --git a/packages/frontend/src/components/MkPostForm.vue b/packages/frontend/src/components/MkPostForm.vue index 09f672be7b..0de15f2eb8 100644 --- a/packages/frontend/src/components/MkPostForm.vue +++ b/packages/frontend/src/components/MkPostForm.vue @@ -422,6 +422,10 @@ function pushVisibleUser(user) { function addVisibleUser() { os.selectUser().then(user => { pushVisibleUser(user); + + if (!text.includes(`@${user.username}`)) { + text = `@${Acct.toString(user)} ${text}`; + } }); } -- cgit v1.2.3-freya