Fix registration error with email language selected

このコミットが含まれているのは:
tusooa 2023-02-12 15:38:36 -05:00
コミット 65d78ced93
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 7B467EDE43A08224
2個のファイルの変更3行の追加2行の削除

ファイルの表示

@ -16,7 +16,7 @@ const registration = {
confirm: '',
birthday: '',
reason: '',
language: ''
language: ['']
},
captcha: {}
}),
@ -100,7 +100,7 @@ const registration = {
this.user.captcha_token = this.captcha.token
this.user.captcha_answer_data = this.captcha.answer_data
if (this.user.language) {
this.user.language = localeService.internalToBackendLocale(this.user.language)
this.user.language = localeService.internalToBackendLocaleMulti(this.user.language.filter(k => k))
}
this.v$.$touch()

ファイルの表示

@ -210,6 +210,7 @@
:prompt-text="$t('registration.email_language')"
:language="v$.user.language.$model"
:set-language="val => v$.user.language.$model = val"
@click.stop.prevent
/>
</div>