summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-10-01 19:32:16 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2021-10-01 19:32:16 +0900
commit027380c013e92c78d895f7f7a1056a11044b7986 (patch)
treeb179a900517776e4de660aa38d775105e60966df /src
parentFix prelude/url (#7855) (diff)
downloadmisskey-027380c013e92c78d895f7f7a1056a11044b7986.tar.gz
misskey-027380c013e92c78d895f7f7a1056a11044b7986.tar.bz2
misskey-027380c013e92c78d895f7f7a1056a11044b7986.zip
fix bug
Diffstat (limited to 'src')
-rw-r--r--src/client/components/captcha.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/components/captcha.vue b/src/client/components/captcha.vue
index 5da8ede3b9..baa922506e 100644
--- a/src/client/components/captcha.vue
+++ b/src/client/components/captcha.vue
@@ -39,7 +39,7 @@ export default defineComponent({
type: String,
required: true,
},
- value: {
+ modelValue: {
type: String,
},
},
@@ -116,7 +116,7 @@ export default defineComponent({
}
},
callback(response?: string) {
- this.$emit('update:value', typeof response == 'string' ? response : null);
+ this.$emit('update:modelValue', typeof response == 'string' ? response : null);
},
},
});