summaryrefslogtreecommitdiff
path: root/packages/frontend/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-04-16 07:59:23 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-04-16 07:59:23 +0900
commit9ad250bbb85349ddf8a89c3c6beadcabe3fb71e8 (patch)
tree2289545ff11a4a59c4271ee2fc7cf27c5b5f9101 /packages/frontend/src
parentMerge branch 'develop' of https://github.com/misskey-dev/misskey into develop (diff)
downloadmisskey-9ad250bbb85349ddf8a89c3c6beadcabe3fb71e8.tar.gz
misskey-9ad250bbb85349ddf8a89c3c6beadcabe3fb71e8.tar.bz2
misskey-9ad250bbb85349ddf8a89c3c6beadcabe3fb71e8.zip
enhance(frontend): improve MkPostForm behaviour
Diffstat (limited to 'packages/frontend/src')
-rw-r--r--packages/frontend/src/components/MkPostForm.vue4
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/frontend/src/components/MkPostForm.vue b/packages/frontend/src/components/MkPostForm.vue
index 6f7db13e30..c65cb7d6e5 100644
--- a/packages/frontend/src/components/MkPostForm.vue
+++ b/packages/frontend/src/components/MkPostForm.vue
@@ -247,6 +247,10 @@ watch($$(text), () => {
checkMissingMention();
}, { immediate: true });
+watch($$(visibility), () => {
+ checkMissingMention();
+}, { immediate: true });
+
watch($$(visibleUsers), () => {
checkMissingMention();
}, {