diff options
| author | yupix <yupi0982@outlook.jp> | 2023-05-14 10:38:52 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-14 10:38:52 +0900 |
| commit | 30ff4592ccf25ef047aaf34017e32f7e12142f32 (patch) | |
| tree | 0d79b816a2baff08331e3170f683c858f1b072cf /packages/frontend/src/components/MkUserSetupDialog.Profile.vue | |
| parent | feat: 開発者モードを追加 (diff) | |
| parent | change(frontend): 動的ページのコンポーネントを削除 (diff) | |
| download | sharkey-30ff4592ccf25ef047aaf34017e32f7e12142f32.tar.gz sharkey-30ff4592ccf25ef047aaf34017e32f7e12142f32.tar.bz2 sharkey-30ff4592ccf25ef047aaf34017e32f7e12142f32.zip | |
Merge branch 'misskey-dev:develop' into feat/client-dev-mode
Diffstat (limited to 'packages/frontend/src/components/MkUserSetupDialog.Profile.vue')
| -rw-r--r-- | packages/frontend/src/components/MkUserSetupDialog.Profile.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkUserSetupDialog.Profile.vue b/packages/frontend/src/components/MkUserSetupDialog.Profile.vue index f26ea11214..109d26dfaa 100644 --- a/packages/frontend/src/components/MkUserSetupDialog.Profile.vue +++ b/packages/frontend/src/components/MkUserSetupDialog.Profile.vue @@ -37,8 +37,8 @@ import { chooseFileFromPc } from '@/scripts/select-file'; import * as os from '@/os'; import { $i } from '@/account'; -const name = ref(''); -const description = ref(''); +const name = ref($i.name ?? ''); +const description = ref($i.description ?? ''); watch(name, () => { os.apiWithDialog('i/update', { |