Browse Source

Merge pull request #25093 from abpframework/auto-merge/rel-10-2/4428

Merge branch dev with rel-10.2
pull/25103/head
Volosoft Agent 2 weeks ago
committed by GitHub
parent
commit
d8cf03a714
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 11
      modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml.cs
  2. 2
      npm/ng-packs/package.json

11
modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml.cs

@ -47,8 +47,15 @@ public class ManageModel : AccountPageModel
return Page();
}
public virtual Task<IActionResult> OnPostAsync()
public virtual async Task<IActionResult> OnPostAsync()
{
return Task.FromResult<IActionResult>(Page());
ProfileManagementPageCreationContext = new ProfileManagementPageCreationContext(ServiceProvider);
foreach (var contributor in Options.Contributors)
{
await contributor.ConfigureAsync(ProfileManagementPageCreationContext);
}
return Page();
}
}

2
npm/ng-packs/package.json

@ -146,7 +146,7 @@
"tslib": "^2.3.0",
"tslint": "~6.1.0",
"typescript": "~5.9.0",
"vite": "^7.0.0",
"vite": "^8.0.0",
"vitest": "^4.0.0",
"zone.js": "~0.15.0"
},

Loading…
Cancel
Save