error view with multiple states used in forms

This commit is contained in:
2020-04-19 18:09:58 +02:00
parent b824e8fcee
commit 613b1a2660
7 changed files with 300 additions and 33 deletions
+1
View File
@@ -28,6 +28,7 @@ namespace zero.Web.Controllers
/// </summary>
public async Task<IActionResult> GetById([FromQuery] string id)
{
await Task.Delay(500);
return Json(Mapper.Map<User, UserEditModel>(await Api.GetUserById(id)));
}