summaryrefslogtreecommitdiff
path: root/packages/client/src
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-06-24 21:19:38 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-06-24 21:19:38 +0900
commit905d8625f831d2080b339aaff159440a4c279004 (patch)
treebe55b2599ebabedfeaf7347f5db8c7b3f2c9aace /packages/client/src
parentfix(client): ログアウトできない問題を修正 (diff)
downloadmisskey-905d8625f831d2080b339aaff159440a4c279004.tar.gz
misskey-905d8625f831d2080b339aaff159440a4c279004.tar.bz2
misskey-905d8625f831d2080b339aaff159440a4c279004.zip
fix(client): アカウント作成フォームでエラーが出る問題を修正
Diffstat (limited to 'packages/client/src')
-rw-r--r--packages/client/src/components/signup.vue20
1 files changed, 10 insertions, 10 deletions
diff --git a/packages/client/src/components/signup.vue b/packages/client/src/components/signup.vue
index 3f2af306e5..a1327e1a1c 100644
--- a/packages/client/src/components/signup.vue
+++ b/packages/client/src/components/signup.vue
@@ -67,12 +67,12 @@
<script lang="ts">
import { defineComponent, defineAsyncComponent } from 'vue';
-const getPasswordStrength = await import('syuilo-password-strength');
+import getPasswordStrength from 'syuilo-password-strength';
import { toUnicode } from 'punycode/';
-import { host, url } from '@/config';
import MkButton from './ui/button.vue';
import MkInput from './form/input.vue';
import MkSwitch from './form/switch.vue';
+import { host, url } from '@/config';
import * as os from '@/os';
import { login } from '@/account';
@@ -89,7 +89,7 @@ export default defineComponent({
type: Boolean,
required: false,
default: false,
- }
+ },
},
emits: ['signup'],
@@ -132,7 +132,7 @@ export default defineComponent({
this.usernameState !== 'invalid-format' &&
this.usernameState !== 'min-range' &&
this.usernameState !== 'max-range');
- }
+ },
},
methods: {
@@ -156,7 +156,7 @@ export default defineComponent({
this.usernameState = 'wait';
os.api('username/available', {
- username: this.username
+ username: this.username,
}).then(result => {
this.usernameState = result.available ? 'ok' : 'unavailable';
}).catch(err => {
@@ -173,7 +173,7 @@ export default defineComponent({
this.emailState = 'wait';
os.api('email-address/available', {
- emailAddress: this.email
+ emailAddress: this.email,
}).then(result => {
this.emailState = result.available ? 'ok' :
result.reason === 'used' ? 'unavailable:used' :
@@ -228,7 +228,7 @@ export default defineComponent({
} else {
os.api('signin', {
username: this.username,
- password: this.password
+ password: this.password,
}).then(res => {
this.$emit('signup', res);
@@ -244,11 +244,11 @@ export default defineComponent({
os.alert({
type: 'error',
- text: this.$ts.somethingHappened
+ text: this.$ts.somethingHappened,
});
});
- }
- }
+ },
+ },
});
</script>