migrate session list page /user security page to composition API and typescript

This commit is contained in:
MaysWind
2025-01-21 23:38:06 +08:00
parent 568abb6e03
commit e053528abf
6 changed files with 397 additions and 373 deletions
@@ -451,9 +451,7 @@ function save(): void {
saving.value = true;
rootStore.updateUserProfile({
profile: newProfile.value
}).then(response => {
rootStore.updateUserProfile(newProfile.value.toProfileUpdateRequest()).then(response => {
saving.value = false;
doAfterProfileUpdate(response.user);